Merge updates from master

This commit is contained in:
Repository mirror & CI
2021-03-04 09:51:55 +00:00
8 changed files with 139 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST purritobin-0.4.2.tar.gz 15436 BLAKE2B 3e632738a9dc17beb331f80a79b52cf75716401d5aa6c6ebb696fd22ea6c65a5f0b7b80e78f8849783ef9688adcc740837d0ae0ab24407f49b274cb09e60eb7d SHA512 1e348ba30ffc1d79643b15da275e29536d3c0a7719ecf27455fafe84a066c7f8d08c5fad5be513d9d6b2b9a7e094dbe38f982eb791b2224a5c32e6fe2a41e0bc
DIST purritobin-0.5.0.tar.gz 16535 BLAKE2B e24943fcd459691a5c5d22c7a1345de1a1101769d502bf3f517310827857315b4c8ea10acc6295cea725959e908b938d3ef6d9379def4c5eaff6000a38a51361 SHA512 fea4127fd9908f86529c80c711bdba90a26b93186b29f1a06a2d541689ef924adc3c62b865ce66d7329c12dcb00d4e3e143ee1db033660ffeea04b8c77e4bd6a

View File

@@ -0,0 +1,47 @@
# 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 services/openrc purritobin
systemd_newunit services/systemd purritobin.service
einstalldocs
}

View File

@@ -0,0 +1 @@
DIST plocate-1.1.5.tar.gz 69090 BLAKE2B 70b398eb1a5d7b36294188966ef5f46843d9db9f41021a294d88795944412b4ef3819771082955a74a9945296fa14c59461a4ab4af197691f7085a40eeb7f0ef SHA512 6169ea7b3587e12e555a42e0c70e149626810f5e6f9f1f03ca1b069d7892d45bc52cabf072324eaa6f14055943dd680a71642914c0218a770e2b00a22c75efbc

View File

@@ -0,0 +1,2 @@
#!/bin/sh
exec /usr/sbin/updatedb

View File

@@ -0,0 +1,13 @@
[Unit]
Description=Update the plocate database
ConditionACPower=true
[Service]
Type=oneshot
ExecStart=/usr/sbin/updatedb
LimitNOFILE=131072
IOSchedulingClass=idle
PrivateTmp=true
PrivateDevices=true
PrivateNetwork=true

View File

@@ -0,0 +1,9 @@
[Unit]
Description=Update the plocate database daily
[Timer]
OnCalendar=daily
Persistent=true
[Install]
WantedBy=timers.target

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>arsen@aarsen.me</email>
<name>Arsen Arsenović</name>
</maintainer>
<longdescription lang="en">
plocate is a locate(1) based on posting lists, completely replacing mlocate with a much faster (and smaller) index. It is suitable as a default locate on your system.
</longdescription>
<use>
<flag name="io-uring">Enable efficient I/O via sys-libs/liburing.</flag>
</use>
</pkgmetadata>

View File

@@ -0,0 +1,52 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson systemd
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
EGIT_REPO_URL="https://git.sesse.net/plocate"
else
SRC_URI="https://plocate.sesse.net/download/plocate-${PV}.tar.gz -> ${P}.tar.gz"
fi
DESCRIPTION="a much faster locate"
HOMEPAGE="https://plocate.sesse.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="io-uring"
DEPEND="
acct-group/locate
!sys-apps/mlocate
io-uring? ( sys-libs/liburing:= )
"
src_configure() {
local emesonargs=(
-Dinstall_cron=false
-Dinstall_systemd=false
-Dlocategroup=locate
)
meson_src_configure
}
src_install() {
meson_src_install
exeinto /etc/cron.daily/
newexe "${FILESDIR}"/updatedb.cron plocate
systemd_dounit "${FILESDIR}"/updatedb.{service,timer}
}
pkg_postinst() {
if [[ -z "${REPLACING_VERSIONS}" ]]; then
# The same notice as mlocate, minus the configuration file
elog "The database for the plocate command is generated daily by a cron job,"
elog "if you install for the first time you can run the updatedb command manually now."
fi
}