Compare commits
3 Commits
d0a973d8e9
...
0ae8395e9f
Author | SHA1 | Date | |
---|---|---|---|
|
0ae8395e9f | ||
|
a698348b77 | ||
|
adff56fcfa |
@ -1,2 +1,3 @@
|
||||
DIST hblock-3.1.0.tar.gz 761993 BLAKE2B cb463372fe26a4c41f772f85c0efefc8172b5794f32005918017d74f7426a8a1067e55c9f53f93208ac6dff9842e2de137ee7d043240bb2caa0d4c610fb37439 SHA512 9e2299986171186a036002fbc25bbc2b91b6b80f9995fb6ef328a1d75f3857add45327a6ae398ca6b16b54d178ec2f7225dbff42aa136ccea81d7a7682d1406e
|
||||
DIST hblock-3.1.2.tar.gz 761158 BLAKE2B fada4817ba5d30ff4f907aef6ea32428210af080b2438ef2d20d7427b7258597fef8e3834bdc995bdba0272ce35254fc0191f3472bb1d8fb93cc8b4277768ac8 SHA512 6c4d0286db48b43198b8363a227110440db6fd885a2b9a505ab59a81a38b62b61b18686fe6b047364b0c389dbf606e3f647e6c77abbb1655bffea926d4d7a9f4
|
||||
DIST hblock-3.1.3.tar.gz 761144 BLAKE2B 83c3c0ba8a4b63e4cbc76bfbb822f05445a78679dbe3f60ee75c5da710bc63eff4156b60a938d203a9020c607dff07d6c2a24148fc52a4aeeb310889a0b32b72 SHA512 b71229a85965b17162e8b797d0170ad4b565411b93707e43d277cdc061f95449435b4212ed5ca77980da74e673e950f8b074bd1761b8e9caf826db340e7a4e83
|
||||
|
45
net-firewall/hblock/hblock-3.1.3.ebuild
Normal file
45
net-firewall/hblock/hblock-3.1.3.ebuild
Normal file
@ -0,0 +1,45 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit systemd
|
||||
|
||||
DESCRIPTION="Improve your security and privacy by blocking ads, tracking and malware domains"
|
||||
HOMEPAGE="https://hblock.molinero.dev/"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/hectorm/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/hectorm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
RESTRICT="binchecks mirror strip test"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
sys-apps/baselayout
|
||||
"
|
||||
BDEPEND="
|
||||
${DEPEND}
|
||||
sys-apps/coreutils
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_compile() {
|
||||
:
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
dobin "${PN}"
|
||||
|
||||
systemd_dounit "${S}"/resources/systemd/hblock.service
|
||||
systemd_dounit "${S}"/resources/systemd/hblock.timer
|
||||
}
|
@ -1 +0,0 @@
|
||||
DIST srain-1.0.2.tar.gz 939068 BLAKE2B 429ec9b7a5a1d292b564fa66a7271062dadad486875d81eb5432deadad8fd3eed0a78b3ce633cea990902814abb01a958ec5c9e811f558de0af8b2d65b2c614c SHA512 6fe895ecd30cb456beb82bff8e147d734b60c8c8e70304602e6193c2f035871ec14421f2b50cf88e851ef7b92ac2b4ccbf03f23153e6949299849b299ebf3db3
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<remote-id type="github">SrainApp/srain</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,62 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit xdg-utils
|
||||
|
||||
DESCRIPTION="Modern IRC client written in GTK"
|
||||
HOMEPAGE="https://srain.im/"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/SrainApp/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="debug"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/glib-2.38:2
|
||||
>=x11-libs/gtk+-3.20.0:3
|
||||
net-libs/glib-networking
|
||||
app-crypt/libsecret
|
||||
net-libs/libsoup
|
||||
x11-libs/libnotify
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
>=sys-devel/gettext-0.19.8
|
||||
dev-libs/libconfig
|
||||
"
|
||||
|
||||
DOCS=(
|
||||
README.rst
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
xdg_environment_reset
|
||||
}
|
||||
|
||||
src_configure(){
|
||||
local myconf=(
|
||||
$(use_enable debug)
|
||||
)
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit xdg-utils
|
||||
|
||||
DESCRIPTION="Modern IRC client written in GTK"
|
||||
HOMEPAGE="https://srain.im/"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/SrainApp/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="debug"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/glib-2.38:2
|
||||
>=x11-libs/gtk+-3.20.0:3
|
||||
net-libs/glib-networking
|
||||
app-crypt/libsecret
|
||||
net-libs/libsoup
|
||||
x11-libs/libnotify
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
>=sys-devel/gettext-0.19.8
|
||||
dev-libs/libconfig
|
||||
"
|
||||
|
||||
DOCS=(
|
||||
README.rst
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
xdg_environment_reset
|
||||
}
|
||||
|
||||
src_configure(){
|
||||
local myconf=(
|
||||
$(use_enable debug)
|
||||
)
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
@ -1,6 +1,10 @@
|
||||
<?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">deepjyoti30/downloader-cli</remote-id>
|
||||
</upstream>
|
||||
|
Loading…
Reference in New Issue
Block a user