mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-18 03:23:20 -04:00
Merge updates from master
This commit is contained in:
1
app-shells/nice-exit-code/Manifest
Normal file
1
app-shells/nice-exit-code/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST nice-exit-code-0_pre20200117.tar.gz 2688 BLAKE2B a67784927f98c0de72e73512eaf032880957e0ec0eaad940c594951bc9e5d898c62350007398e708d0cfc855e3db3046bb481adf867b83dd1a1abf501e3d6888 SHA512 c74a30f28af9ad58b77f470a183006a8fcc4d1f15ba19ce3c2e6ca2e0fd947d25873b36beb86b66bbea97ea1c66b6f088269ca4ab20233b1adea35eb527e5e78
|
||||
12
app-shells/nice-exit-code/metadata.xml
Normal file
12
app-shells/nice-exit-code/metadata.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>lssndrbarbieri@gmail.com</email>
|
||||
<name>Alessandro Barbieri</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/bric3/nice-exit-code/issues</bugs-to>
|
||||
<remote-id type="github">bric3/nice-exit-code</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
COMMIT="de7ac733d28705b5e9989b9c8231ac88eb33d841"
|
||||
|
||||
DESCRIPTION="ZSH plugin that maps exit status code to human readable string"
|
||||
HOMEPAGE="https://github.com/bric3/nice-exit-code"
|
||||
SRC_URI="https://github.com/bric3/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
app-shells/zsh
|
||||
"
|
||||
|
||||
DOCS=( README.md )
|
||||
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
rm -rf "LICENSE" "${DOCS[@]}" || die
|
||||
dodir "/usr/share/zsh/plugins"
|
||||
insinto "/usr/share/zsh/plugins/${PN}"
|
||||
doins -r .
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "To use this module please read the README"
|
||||
}
|
||||
1
app-shells/zsh-histdb/Manifest
Normal file
1
app-shells/zsh-histdb/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST zsh-histdb-0_pre20200405.tar.gz 11227 BLAKE2B ac63958e910bae87a0cf81c31ca9bb84d5c51bb5ad94339498d05741a424d6410008a07f86da03847673af3cfc9750b03f126c3eb4a994c8ffbccf589849421f SHA512 ae2e31fc5c872c0dbc4615c8ba3d0935c57c3d24158baae1fdb935723859f62d529941b8b0112a28259629bf2f92e7f2a953f0880fbf3c7746a301aa70dd4f04
|
||||
23
app-shells/zsh-histdb/metadata.xml
Normal file
23
app-shells/zsh-histdb/metadata.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>lssndrbarbieri@gmail.com</email>
|
||||
<name>Alessandro Barbieri</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/larkery/zsh-histdb/issues</bugs-to>
|
||||
<remote-id type="github">larkery/zsh-histdb</remote-id>
|
||||
</upstream>
|
||||
<longdescription lang="en">
|
||||
This is a small bit of zsh code that stores your history into a sqlite3 database. It improves on the normal history by storing, for each history command:
|
||||
|
||||
The start and stop times of the command
|
||||
The working directory where the command was run
|
||||
The hostname of the machine
|
||||
A unique per-host session ID, so history from several sessions is not confused
|
||||
The exit status of the command
|
||||
|
||||
It is also possible to merge multiple history databases together without conflict, so long as all your machines have different hostnames.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
35
app-shells/zsh-histdb/zsh-histdb-0_pre20200405.ebuild
Normal file
35
app-shells/zsh-histdb/zsh-histdb-0_pre20200405.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
COMMIT="7c34b558cca374b6c8727fc08868f2bc044fd162"
|
||||
|
||||
DESCRIPTION="A slightly better history for zsh"
|
||||
HOMEPAGE="https://github.com/larkery/zsh-histdb"
|
||||
SRC_URI="https://github.com/larkery/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
app-shells/zsh
|
||||
dev-db/sqlite
|
||||
"
|
||||
|
||||
DOCS=( README.org )
|
||||
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
rm -rf "LICENSE" "${DOCS[@]}" || die
|
||||
dodir "/usr/share/zsh/plugins"
|
||||
insinto "/usr/share/zsh/plugins/${PN}"
|
||||
doins -r .
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "To use this module please read the README"
|
||||
}
|
||||
1
dev-python/baron/Manifest
Normal file
1
dev-python/baron/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST baron-0.9.tar.gz 835127 BLAKE2B be5aee3b5f7d8c317295cb88429eb2feb45c2fba135ba1a57370a070bd27dd6ee1fea8048201f40d7579bea56c535855a8605d6304f1987f4b138ed5591d0b77 SHA512 ed31bad1442b8d868ab9872f057db31ad8730654a7e8d49119c75d5631c881b074baf5754b0b0b5023dad62eda1f40461e4445321695248cfa3530b608d48c8e
|
||||
25
dev-python/baron/baron-0.9.ebuild
Normal file
25
dev-python/baron/baron-0.9.ebuild
Normal file
@@ -0,0 +1,25 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Full Syntax Tree for python to make writing refactoring code a realist task"
|
||||
HOMEPAGE="https://github.com/PyCQA/baron https://baron.pycqa.org"
|
||||
SRC_URI="https://github.com/PyCQA/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/rply[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
# Doc building fails:
|
||||
# RuntimeError: Non Expected warning in `/var/tmp/portage/dev-python/baron-0.9/work/baron-0.9/docs/advanced.rst` line 48
|
||||
#distutils_enable_sphinx docs dev-python/matplotlib dev-python/ipython
|
||||
12
dev-python/baron/metadata.xml
Normal file
12
dev-python/baron/metadata.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">PyCQA/baron</remote-id>
|
||||
<remote-id type="pypi">baron</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
77
net-misc/FORT-validator/FORT-validator-1.2.1.ebuild
Normal file
77
net-misc/FORT-validator/FORT-validator-1.2.1.ebuild
Normal file
@@ -0,0 +1,77 @@
|
||||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools fcaps systemd
|
||||
|
||||
DESCRIPTION="FORT validator is an open source RPKI validator"
|
||||
HOMEPAGE="https://fortproject.net/validator?2"
|
||||
SRC_URI="https://github.com/NICMx/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
MY_PN="fort"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="caps libressl"
|
||||
|
||||
DEPEND="
|
||||
acct-group/fort
|
||||
acct-user/fort
|
||||
caps? ( sys-libs/libcap )
|
||||
dev-libs/jansson
|
||||
libressl? ( dev-libs/libressl:0= )
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
net-misc/rsync
|
||||
"
|
||||
BDEPEND="
|
||||
sys-devel/autoconf
|
||||
sys-devel/automake
|
||||
"
|
||||
|
||||
PATCHES="${FILESDIR}/${PN}-skip-online-test.patch"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_install() {
|
||||
newinitd "${FILESDIR}/${MY_PN}-initd" ${MY_PN}
|
||||
newconfd "${FILESDIR}/${MY_PN}-confd" ${MY_PN}
|
||||
|
||||
emake DESTDIR="${D}" install
|
||||
insinto /usr/share/${MY_PN}/
|
||||
insopts -m0644 -o "${MY_PN}"
|
||||
diropts -m0755 -o "${MY_PN}"
|
||||
doins -r examples/tal/
|
||||
|
||||
dodoc -r examples/
|
||||
|
||||
insinto /etc/fort
|
||||
newins "${FILESDIR}/fort-config.json" config.json
|
||||
|
||||
exeinto "/usr/libexec/${MY_PN}"
|
||||
doexe fort_setup.sh
|
||||
|
||||
systemd_dounit "${FILESDIR}/${MY_PN}.service"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fcaps cap_net_bind_service usr/bin/fort
|
||||
|
||||
einfo ""
|
||||
einfo "ARIN TAL is disabled by default because the ARIN Relying Party"
|
||||
einfo "Agreement must be accepted beforehead. Start fort, run"
|
||||
einfo ""
|
||||
einfo " su -s /bin/sh -c '${EROOT}/usr/libexec/${MY_PN}/fort_setup.sh /usr/share/${MY_PN}/tal/' fort"
|
||||
einfo ""
|
||||
einfo "as root and restart fort to enable it."
|
||||
einfo "The configuration file generation will provide a config file, but a"
|
||||
einfo "simpler one is shiped with the ebuid. Use the one you prefer."
|
||||
}
|
||||
@@ -1 +1,2 @@
|
||||
DIST FORT-validator-1.2.0.tar.gz 427483 BLAKE2B 05fbec44fb17fa188b6196a2b166f2e112224dcf4071cc875ed1f3a147b28acff94c89b0c0a658aaee197e1820d9f53803e73add81e355f7df07713fcdb0df00 SHA512 e89b1aa7c0cd4036d04a017898e1a6017450f5dab96e57c35b0aa532b212b23f7fab17ca117a9461c9bdacca511ea70341e692a4d5e8f277ae8e277c1d48706e
|
||||
DIST FORT-validator-1.2.1.tar.gz 431832 BLAKE2B 25459e591a531dcf3326baec06c9e462611f1fd727bd79623d0f5eae0f02b2398e698ea6f0cf7608061f5e125afb056c7dff9b1dcc6fbe01332e573e8c4b1f15 SHA512 87d256a02ca6d3c00bb2245476c126b076f6c57e9eeaefb2dcb0dfed5763b5769731de08e4168c9ce701a2820eeda69c3bf054c8445b910948504fdb7b0b6b50
|
||||
|
||||
1
net-misc/wayback_machine_downloader/Manifest
Normal file
1
net-misc/wayback_machine_downloader/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST wayback_machine_downloader-2.2.1.gem 10240 BLAKE2B 88bcd40fb9773d45a63708fbf0f04583d9ee0da2f6e20ccf86433fb9e451473985c9ede6c67334ec1a98ad62a5330fc09e89b06e3838e15460fd452b336f2aa6 SHA512 3fc562f8c910b64287267cb8e06427ef223a0a0b1e1830bb82f9aca54b843f8933d13247920ad30b9b955bcfc0a7882cea0ff6b45c9bfa9e96790e058bb0f7bc
|
||||
15
net-misc/wayback_machine_downloader/metadata.xml
Normal file
15
net-misc/wayback_machine_downloader/metadata.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>lssndrbarbieri@gmail.com</email>
|
||||
<name>Alessandro Barbieri</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/hartator/wayback-machine-downloader/issues</bugs-to>
|
||||
<remote-id type="github">hartator/wayback-machine-downloader</remote-id>
|
||||
</upstream>
|
||||
<longdescription lang="en">
|
||||
Download an entire website from the Wayback Machine. Wayback Machine by Internet Archive (archive.org) is an awesome tool to view any website at any point of time but lacks an export feature. Wayback Machine Downloader brings exactly this.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,17 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
USE_RUBY="ruby24 ruby25 ruby26 ruby27"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="Download an entire website from the Wayback Machine"
|
||||
HOMEPAGE="https://github.com/hartator/wayback-machine-downloader"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
#requires network
|
||||
RESTRICT="test"
|
||||
Reference in New Issue
Block a user