mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-16 18:43:18 -04:00
Merge updates from master
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
DIST epubgrep-0.6.0.tar.gz 271553 BLAKE2B 6693c6bb61cf8b778145b5dcf1976ecf17716e8a42e01f9754e4fd82a72c136a09baf12f197029a84aeea727af2d95d4a56aacaf9b4aac5bae81e3ed6b356226 SHA512 4e28c041d434d85ea8dfa4c43f3e0ae7263e11714330ead356b782968ec96642baefbb4d2f37d28cabfd0e53610edb04ec8409dff7232a970f01eb8a5755befe
|
||||
DIST epubgrep-0.6.2.tar.gz 274513 BLAKE2B 74b9ffda1ad4a3a70e2d501b91967a842fcad18dd3227118e83b69248196a2cc832f297467c855d2ba6c391bae886978a7f1ee10cb466e2ab639d1e6a8c73b5e SHA512 9caee8565b77198aa853bfb3d2a18f5566d16b10b4e3911a5ab73b5740a8b3dc7f67978e8630167d0768e638dc8b42452164421c8914e63f990676f4e5c801bb
|
||||
DIST epubgrep-0.6.0.tar.gz 271925 BLAKE2B b45f32d8850166bdb112c80adbc2c16c95b4fc03dcee51861b6033493e6297899a4018f7f4f1d83fe47ad1bb4400f682271bf98540458e9ce5fd80d6ec1cc199 SHA512 ff81f3a4a2d5cbc11d2799b7b90bb6758939d78e1e5b7ee2774d6985a55b68102b1172f54d8d07be09dad2aa1efed16429aca48fb733367147dcf989286f4289
|
||||
DIST epubgrep-0.6.2.tar.gz 274558 BLAKE2B c70e199e7d3cb8df828e3cd2f91eab70b8302da2205b5e206e15c3b61ad7cc86f2e4e5cd01e35a5d69ad298e5d3106c9e8dfc4821432c2cf9a692f9ab169fc4f SHA512 f310c33ac08e4154a821b7d674e2eeaa70925dfd27d1e5481cc5792e84ac53f2b7e4931db29ac1c208a83ff989c77b80904bfb4471770266180ab04789f2132c
|
||||
|
||||
@@ -1 +1 @@
|
||||
DIST mastodonpp-0.5.7.tar.gz 48181 BLAKE2B cce2b9b61c3cb88a5246888d97b5495979b15e41b1e6d5499d09f00cd24fc94b78a983d634ec28dee0d537642294542235efa261faaa3320ab905f7196b16133 SHA512 83efbd32f7cde6a19546c21d99ed1c8b747ac995b69a5e87876bd0ea0aa9c932d0d255ed2cbe5b0fe4a92aec06d6c75d455f13e9537aade31176ec757916b27a
|
||||
DIST mastodonpp-0.5.7.tar.gz 48172 BLAKE2B 70dabcb041b5545a205f2f551800317faf6e94a72f7a1d1b20a49b5ab7cf1a8fa0744438c66e03d9d47975b90d6fe31f284c968d5314c248fa681361d3ca4013 SHA512 c837571bcf8ca01ad9dc7792e75d114fac97092edf45ce5d6392835eadea7cb4ad47f83f3f850f2b3a52dfdd31c3b637a0b4d1b6140edddf1291311352557bf9
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
DIST blueprint-compiler-v0.6.0.tar.bz2 56896 BLAKE2B 318ffa52b2fbf3b07058e5b4d2f9bb0ef1f6614586b79968889921964b454e5c26d44e58a18185263797f7569135662d14471bafd8e501d7c6386e88972193d0 SHA512 458016f4eabef15026cb3ee675111984b19af8a9139bc412dfb48dfef56b0d0ff028316001d0ce04a90b50d6785c92d799f17ed42ca53fc7582345729ae02207
|
||||
@@ -1,87 +0,0 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit meson python-r1
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.gnome.org/jwestman/blueprint-compiler.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v${PV}/blueprint-compiler-v${PV}.tar.bz2"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Compiler for Blueprint, a markup language for GTK user interfaces"
|
||||
HOMEPAGE="https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/"
|
||||
|
||||
LICENSE="LGPL-3+"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="doc test"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
doc? (
|
||||
dev-python/sphinx[${PYTHON_USEDEP}]
|
||||
dev-python/furo[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
DEPEND="
|
||||
test? (
|
||||
gui-libs/gtk:4[introspection]
|
||||
)
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_use doc docs)
|
||||
)
|
||||
python_foreach_impl meson_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
python_foreach_impl meson_src_compile
|
||||
use doc && build_sphinx docs
|
||||
}
|
||||
|
||||
src_test() {
|
||||
python_foreach_impl meson_src_test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
my_src_install() {
|
||||
local exe="${ED}/usr/bin/${PN}"
|
||||
|
||||
# Meson installs a Python script at ${ED}/usr/bin/${PN}; on
|
||||
# Gentoo, the script should go into ${ED}/usr/lib/python-exec,
|
||||
# and ${ED}/usr/bin/${PN} should be a symbolic link to
|
||||
# ${ED}/usr/lib/python-exec/python-exec2.
|
||||
#
|
||||
# When multiple PYTHON_TARGETS are enabled, then after the
|
||||
# package has been installed for one Python implementation,
|
||||
# Meson will follow the ${ED}/usr/bin/${PN} symbolic link and
|
||||
# install the script at ${ED}/usr/lib/python-exec/python-exec2
|
||||
# for the remaining implementations, leading to file collision.
|
||||
if [[ -L "${exe}" ]]; then
|
||||
rm -v "${exe}" || die "Failed to remove symbolic link ${exe}"
|
||||
fi
|
||||
|
||||
meson_src_install
|
||||
python_doscript "${exe}"
|
||||
python_optimize
|
||||
}
|
||||
|
||||
python_foreach_impl my_src_install
|
||||
}
|
||||
@@ -1,87 +0,0 @@
|
||||
# Copyright 2022-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit meson python-r1 virtualx
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.gnome.org/jwestman/blueprint-compiler.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v${PV}/blueprint-compiler-v${PV}.tar.bz2"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Compiler for Blueprint, a markup language for GTK user interfaces"
|
||||
HOMEPAGE="https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/"
|
||||
|
||||
LICENSE="LGPL-3+"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="doc test"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
doc? (
|
||||
dev-python/sphinx[${PYTHON_USEDEP}]
|
||||
dev-python/furo[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
DEPEND="
|
||||
test? (
|
||||
gui-libs/gtk:4[introspection]
|
||||
)
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_use doc docs)
|
||||
)
|
||||
python_foreach_impl meson_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
python_foreach_impl meson_src_compile
|
||||
use doc && build_sphinx docs
|
||||
}
|
||||
|
||||
src_test() {
|
||||
virtx python_foreach_impl meson_src_test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
my_src_install() {
|
||||
local exe="${ED}/usr/bin/${PN}"
|
||||
|
||||
# Meson installs a Python script at ${ED}/usr/bin/${PN}; on
|
||||
# Gentoo, the script should go into ${ED}/usr/lib/python-exec,
|
||||
# and ${ED}/usr/bin/${PN} should be a symbolic link to
|
||||
# ${ED}/usr/lib/python-exec/python-exec2.
|
||||
#
|
||||
# When multiple PYTHON_TARGETS are enabled, then after the
|
||||
# package has been installed for one Python implementation,
|
||||
# Meson will follow the ${ED}/usr/bin/${PN} symbolic link and
|
||||
# install the script at ${ED}/usr/lib/python-exec/python-exec2
|
||||
# for the remaining implementations, leading to file collision.
|
||||
if [[ -L "${exe}" ]]; then
|
||||
rm -v "${exe}" || die "Failed to remove symbolic link ${exe}"
|
||||
fi
|
||||
|
||||
meson_src_install
|
||||
python_doscript "${exe}"
|
||||
python_optimize
|
||||
}
|
||||
|
||||
python_foreach_impl my_src_install
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>liaoyuan@gmail.com</email>
|
||||
<name>Yuan Liao</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gnome-gitlab">jwestman/blueprint-compiler</remote-id>
|
||||
<doc>https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/</doc>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,2 +1,2 @@
|
||||
DIST mastorss-0.13.0.tar.gz 50548 BLAKE2B 56b05c43842760881c9bc27bbd404804beba0216b2d8a129aea78a41cf2fe832d357615b74ecf56c491af7a789e72691766d46cc6172b89057f7a5b179ff09e8 SHA512 c5034d483fc3139f9276b62c0a9181754fd847f45d6286bfd39b20ed602ae3ec72031ed898c5f3b3dba627e978232180cbd50340e3579771a7a42b6a98f83161
|
||||
DIST mastorss-0.13.1.tar.gz 51109 BLAKE2B a1cf754e46b028e773f12f6527433c74302c7067fae374b973bd736537fa121194227f83dfb25eca545e3d0f46bb61edc11f5ac290773108ad8970e5936d40d9 SHA512 ac9e98213afb92ea2bb9c65163c384c802bb9a036d477c7d8d87f669372910d9f5d79b50dbc160852629e7dce7a09f695308a00b76b7f454c0f80f15c6bc32b6
|
||||
DIST mastorss-0.13.0.tar.gz 50656 BLAKE2B 916be33c75bc109c1b49da16b03bb9d43ba3f240e8f4eb2b9ad5cd7820f6d7818ed74df9cace638120c339398e41f5aeff5acd1ff1c31f98c49cd13432fbd91a SHA512 ca9510a46f5aed81dd48385c8c3dcfea6737e3a38ebb322e3e2abcc85f3a23bb6f465239f5054e3cc7b4e732b2f7f077c194ee67440a3cefd1912be1c01d2e09
|
||||
DIST mastorss-0.13.1.tar.gz 51224 BLAKE2B cdd258e7ace44fed2e4a800ecc8cc5c24788b760119500a30c9c1ddab7ea2eb790dfe0a0966cc70b6b9d1bfd7766b51ab433a94feae13ff8e1d4462e6aa6c5bd SHA512 2066e39f0d370a2512996c42818dbf5f7f260ee1bcf9ab095871869380fbd9fa432725f06f588c05c37ec3adccbd8602d12155352929087d4ced868b7cf46acd
|
||||
|
||||
@@ -1 +1 @@
|
||||
DIST gitea2rss-0.7.0.tar.gz 25135 BLAKE2B f39e59aaa1381155ba1ec9c7bf831120a3c1504458515854d66e38cdc5d76bd436aeb055c85136c7010b22a65e87482d604f3542a6cf9f00cf9b6a906afa8cfc SHA512 1041897d3e1cbe60f75330403abf27b990923f2f47ea5c9d513dcf50a4e92a457ab2989067e4d29b8bbe16b4be39fdb74e87b337f49825607831c5e4090a0a80
|
||||
DIST gitea2rss-0.7.0.tar.gz 25234 BLAKE2B 74a0e97c9bca2f3a1d49f02cbacaa52fd8a5d9bac2d6d8242d70c8fc3c3c86b98783695122adf5190231aaad422f87b49664ece85c6313c7a2b2211b38e36d38 SHA512 94a55a676bfe441d6f5aac2137b34e571a7394324a9adc5f3438fa30ff4a1fa7070a46c6506f9c69f172c52b315fba2a54c64deee0ffcdf92d4a99dd3f5de7af
|
||||
|
||||
Reference in New Issue
Block a user