Merge updates from master

This commit is contained in:
Repository mirror & CI
2022-05-24 19:17:48 +00:00
6 changed files with 51 additions and 9 deletions

View File

@@ -1 +1,2 @@
DIST pmbootstrap-1.43.1.tar.gz 225811 BLAKE2B d8e5d74510692f65e1430be9d813c23c95c4e8b44212c21ef01747264333a59cb158fb7f03866ca28d907b2d9ab927bfa9dd347bed7462fab6c64b03b9a629cf SHA512 96ba36dba211eacca44afae2c7009fc3e784e0067547406f9640eda311e3331adc54a81ebecefdf3238096e7a156dd3e56fc5b2864c28810c0526ab3efb64c15
DIST pmbootstrap-1.44.1.tar.gz 225898 BLAKE2B 0dd8ea621c7ece8cd7f331d06dd85bde6b38c08bcadd8b0bc6d364855bef7204007988d79992b4ecc8d15e89f1f3917aa0104e81f93ab88e62392da6c96a0bcc SHA512 05499bea2d880f7c8ec3e4bf87b819186448eb99855989d88dc7fa320c71b142461e0679d6089cb06cd3f3b887da389e924d03b20e5f9c339b1ef7610b37b2cf

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8,9,10} )
inherit python-r1 distutils-r1 linux-info
DESCRIPTION="Helper tool for developing and building postmarketOS"
HOMEPAGE="https://postmarketos.org/"
SRC_URI="https://files.pythonhosted.org/packages/source/p/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
# According to upstream README either x86, amd64 or arm64 are required. I
# wrote down all other arches because if I just did -* without adding x86 and
# arm64 keywords it would seem like the package only works on amd64, but I can't
# keyword x86 and arm64 because I can't test these.
KEYWORDS="-alpha ~amd64 -arm -hppa -ia64 -ppc -ppc64 -riscv -sparc"
# Tests are disabled because they require the pmaports repository (containing
# postmarketOS APKBUILDs) to be cloned at runtime.
RESTRICT="mirror test"
DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}
dev-vcs/git"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
pkg_pretend() {
if kernel_is -lt 3 17 0; then
eerror "pmbootstrap requires Linux 3.17 or greater."
die
fi
}

View File

@@ -18,9 +18,11 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="systemd +openrc"
DEPEND=">=virtual/jdk-1.8
acct-group/yacy
acct-user/yacy"
DEPEND="
>=virtual/jdk-1.8
acct-group/yacy
acct-user/yacy
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
@@ -35,7 +37,7 @@ src_install() {
rm ${S}/*.sh || die
# remove sources
rm -r "${S}/source" || die
rm ${S}/build.properties ${S}/build.xml
rm ${S}/build.properties ${S}/build.xml || die
dodoc AUTHORS NOTICE && rm AUTHORS NOTICE COPYRIGHT gpl.txt
@@ -49,7 +51,7 @@ src_install() {
chown yacy:yacy "${D}/var/log/yacy" || die
keepdir /var/log/yacy
rmdir "$D/$yacy_home/DATA"
rmdir "$D/$yacy_home/DATA" || die
dosym /var/lib/yacy /${yacy_home}/DATA
use openrc && {

View File

@@ -48,3 +48,7 @@ gnome-extra/extension-manager
# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2022-04-14)
# Depends on unavailable dev-python/regex-2022.3.15
dev-python/dateparser
# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2022-05-24)
# Hard depends on removed version of app-crypt/certbot, needs bump
app-crypt/certbot-dns-digitalocean

View File

@@ -4,8 +4,8 @@
EAPI=7
DESCRIPTION="Run a command at a particular time"
HOMEPAGE="https://github.com/leahneukirchen/${PN}"
SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
HOMEPAGE="https://github.com/leahneukirchen/snooze"
SRC_URI="https://github.com/leahneukirchen/snooze/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="CC0-1.0"

View File

@@ -4,10 +4,10 @@
EAPI=7
DESCRIPTION="Run a command at a particular time"
HOMEPAGE="https://github.com/leahneukirchen/${PN}"
HOMEPAGE="https://github.com/leahneukirchen/snooze"
inherit git-r3
EGIT_REPO_URI="${HOMEPAGE}.git"
EGIT_REPO_URI="https://github.com/leahneukirchen/snooze.git"
LICENSE="CC0-1.0"
SLOT="0"