From 3ac3720d6a8d6e960d899b26e4b054fd8d20687d Mon Sep 17 00:00:00 2001 From: Niko Huuskonen Date: Fri, 10 Mar 2023 21:00:46 +0200 Subject: [PATCH 01/13] net-im/discord-canary-bin: update 0.0.148 -> 0.0.149 Signed-off-by: Niko Huuskonen --- net-im/discord-canary-bin/Manifest | 2 +- ...ary-bin-0.0.148.ebuild => discord-canary-bin-0.0.149.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename net-im/discord-canary-bin/{discord-canary-bin-0.0.148.ebuild => discord-canary-bin-0.0.149.ebuild} (100%) diff --git a/net-im/discord-canary-bin/Manifest b/net-im/discord-canary-bin/Manifest index ffe15f4a9d..2a57105160 100644 --- a/net-im/discord-canary-bin/Manifest +++ b/net-im/discord-canary-bin/Manifest @@ -1 +1 @@ -DIST discord-canary-0.0.148.deb 92547910 BLAKE2B e217d7bc3fd2f255fb79367cecebfb3f8663aec92602d1d5b300352c42a7b37c788c841a161d6eb69dfb9669e5f724b7fa352bd78116ec2bd1421f5736f23f0e SHA512 48f8eb43e0e73b2a27caa37925e3d4a64d5d695a5d96b9028be44a8353edf56e3584668a55c3e8378a0d7c62edd97587a80a78ff3669281bd86098d41b3d60cf +DIST discord-canary-0.0.149.deb 92547260 BLAKE2B ca01989c0e4cda5a39805aabf1cd04c7ee50c9ec2dfbe932cb365ea3cf1adf00204f5f8aeefae3dc56a19aab7be806cd03fb98af6281cbe9b8b5ca49d978c1ff SHA512 02bb45855a2b2c2d662b009a62babe10e855697857a4b729eeabab2951a7492bdba9815a3b7b25ec9df89bebd36946b21ee8f93692bc64babc98d06bb3212fda diff --git a/net-im/discord-canary-bin/discord-canary-bin-0.0.148.ebuild b/net-im/discord-canary-bin/discord-canary-bin-0.0.149.ebuild similarity index 100% rename from net-im/discord-canary-bin/discord-canary-bin-0.0.148.ebuild rename to net-im/discord-canary-bin/discord-canary-bin-0.0.149.ebuild From c2e94c1bea834540405600289f64ca8c3785bfa1 Mon Sep 17 00:00:00 2001 From: Thomas Scholz Date: Sat, 11 Mar 2023 08:54:14 +0100 Subject: [PATCH 02/13] app-admin/oet: add 0.1.10 Signed-off-by: Thomas Scholz --- app-admin/oet/Manifest | 1 + app-admin/oet/oet-0.1.10.ebuild | 39 +++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 app-admin/oet/oet-0.1.10.ebuild diff --git a/app-admin/oet/Manifest b/app-admin/oet/Manifest index 5492d496f8..a87bdf3b7b 100644 --- a/app-admin/oet/Manifest +++ b/app-admin/oet/Manifest @@ -1 +1,2 @@ +DIST oet-0.1.10.tar.gz 13939 BLAKE2B 6f1f45fe098e5fbdcd0c4c67fd9e41b2bcef49d7783864b6ba285e8f2757ab257135bb01b537d3cd8fb8d64aef97755d03212afe0d4c93402b06ef5eb44d09a1 SHA512 f841fe767414d853ba559066cf8e158a40a184060bcd48ec6c4784a135f44f2c8431e4518e6f94e8c1723bbc7d430b9c563a9ca69196ccce103e561940d03b20 DIST oet-0.1.9.tar.gz 13841 BLAKE2B 59c2859387ece5253380594f671ea7526d8865995ad79360c6156352cdfaadb6f2bf7b2d355bee22e78e53190c8e8fc4f9c3e610025b2b78bc986c319306a873 SHA512 f140c232b0781c6a00ad22204cf68e226b9a26ac8329c31021f3d0bad7320c1a5323acddb5b348b28dc1bd914daba94c3a30bfd17341f7e0406ccc902daf8f1d diff --git a/app-admin/oet/oet-0.1.10.ebuild b/app-admin/oet/oet-0.1.10.ebuild new file mode 100644 index 0000000000..7b270b200f --- /dev/null +++ b/app-admin/oet/oet-0.1.10.ebuild @@ -0,0 +1,39 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Update your system into binpkgs in an overlay sandbox" +HOMEPAGE="https://codeberg.org/bcsthsc/overlay-emerge-tool" +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://codeberg.org/bcsthsc/overlay-emerge-tool.git" + EGIT_BRANCH="main" + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" +else + SRC_URI="https://codeberg.org/bcsthsc/overlay-emerge-tool/archive/oet-${PV}.tar.gz" + S="${WORKDIR}/overlay-emerge-tool" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="LGPL-2" +SLOT="0" + +DEPEND=" + sys-apps/util-linux +" +RDEPEND=" + ${DEPEND} +" + +src_prepare() { + if [[ "${PV}" == "9999" ]]; then + git describe --tags --abbrev=0 | sed -e "s/oet-//" >.version + else + echo ${PV} >.version + fi + default + eautoreconf -fi +} From 7a50669a6433ae0fb8dfd0af7ccb3cc1bb0dc4f2 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sat, 11 Mar 2023 11:01:11 +0100 Subject: [PATCH 03/13] gui-apps/tofi: add 0.8.1 Signed-off-by: Michael Mair-Keimberger --- gui-apps/tofi/Manifest | 1 + gui-apps/tofi/metadata.xml | 11 ++++++++ gui-apps/tofi/tofi-0.8.1.ebuild | 45 +++++++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 gui-apps/tofi/Manifest create mode 100644 gui-apps/tofi/metadata.xml create mode 100644 gui-apps/tofi/tofi-0.8.1.ebuild diff --git a/gui-apps/tofi/Manifest b/gui-apps/tofi/Manifest new file mode 100644 index 0000000000..0004959a6a --- /dev/null +++ b/gui-apps/tofi/Manifest @@ -0,0 +1 @@ +DIST tofi-0.8.1.tar.gz 352696 BLAKE2B c882f8915623188d7614f2bf06ed92fef358cf9acae2a1f1f2e34a812098bf3897a054428c5fbfa88231bc1153c02219611d7596e6e3dbc9148cd57359d79753 SHA512 61e7621ff7ee9dad44ebab9b49b2afc8eebe40f17eb3c8911443810b9e8efb108a96e63e2cbb459c584583ee3a7ef2a23308783ead0a184ebcb36eba31f52dce diff --git a/gui-apps/tofi/metadata.xml b/gui-apps/tofi/metadata.xml new file mode 100644 index 0000000000..1c0b49df83 --- /dev/null +++ b/gui-apps/tofi/metadata.xml @@ -0,0 +1,11 @@ + + + + + mmk@levelnine.at + Michael Mair-Keimberger + + + philj56/tofi + + diff --git a/gui-apps/tofi/tofi-0.8.1.ebuild b/gui-apps/tofi/tofi-0.8.1.ebuild new file mode 100644 index 0000000000..07aca8fdd0 --- /dev/null +++ b/gui-apps/tofi/tofi-0.8.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Fast and simple dmenu/rofi replacement for wlroots-based Wayland compositors" +HOMEPAGE="https://github.com/philj56/tofi" +SRC_URI="https://github.com/philj56/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="+man" + +RDEPEND=" + dev-libs/glib + dev-libs/wayland + media-libs/freetype:2 + media-libs/harfbuzz + x11-libs/cairo + x11-libs/pango + x11-libs/libxkbcommon +" + +DEPEND=" + ${RDEPEND} + dev-libs/wayland-protocols + dev-util/wayland-scanner + elibc_musl? ( sys-libs/fts-standalone ) + " + +BDEPEND=" + virtual/pkgconfig + man? ( app-text/scdoc ) + " + +src_configure() { + local emesonargs=( + $(meson_feature man man-pages) + ) + meson_src_configure +} From a50063274b728a1e117d4e9cfc483a95240d2b1b Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sat, 11 Mar 2023 12:17:03 +0200 Subject: [PATCH 04/13] dev-python/dropbox: check pypi and tests Signed-off-by: Viorel Munteanu --- dev-python/dropbox/dropbox-11.36.0.ebuild | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/dev-python/dropbox/dropbox-11.36.0.ebuild b/dev-python/dropbox/dropbox-11.36.0.ebuild index c088da3c80..49177dc089 100644 --- a/dev-python/dropbox/dropbox-11.36.0.ebuild +++ b/dev-python/dropbox/dropbox-11.36.0.ebuild @@ -11,6 +11,7 @@ GH_PN=dropbox-sdk-python DESCRIPTION="The offical Dropbox SDK for Python" HOMEPAGE="https://www.dropbox.com/developers" +# pypi does not have tests, stick with gh SRC_URI="https://github.com/dropbox/${GH_PN}/archive/refs/tags/v${PV}.tar.gz -> ${GH_PN}-${PV}.gh.tar.gz" S="${WORKDIR}"/${GH_PN}-${PV} @@ -26,18 +27,19 @@ RDEPEND=" PATCHES=( "${FILESDIR}"/${P}-setuptools-67.patch ) +# disable tests that need SCOPED_USER_DROPBOX_TOKEN +# and tests that fail +EPYTEST_DESELECT=( + test/integration/test_dropbox.py + test/unit/test_dropbox_unit.py::TestClient + test/unit/test_dropbox_unit.py::TestOAuth::test_NoRedirect_whole_flow +) + distutils_enable_tests pytest python_prepare_all() { - # Don't run tests via setup.py pytest - sed -i -e "/'pytest-runner.*',/d" setup.py || die # this is wrong sed -i -e "s/^import mock$/from unittest import mock/" test/unit/test_dropbox_unit.py || die - # disable tests that need SCOPED_USER_DROPBOX_TOKEN - mv test/integration/test_dropbox.py test/integration/_test_dropbox.py || die - sed -i -e "s/\(class\) \(TestClient\)/\\1 _\\2/ - s/test_NoRedirect_whole_flow/_&/" test/unit/test_dropbox_unit.py || die - distutils-r1_python_prepare_all } From 0c61ba9cb2a51750cf466ba3ba0fcab92d739448 Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Sat, 11 Mar 2023 16:32:24 +0500 Subject: [PATCH 05/13] kde-apps/tokodon: add 23.02.0, drop 22.11.1 Closes: https://bugs.gentoo.org/900853 Signed-off-by: Anna (cybertailor) Vyalkova --- kde-apps/tokodon/Manifest | 2 +- kde-apps/tokodon/tokodon-23.01.0.ebuild | 2 +- .../{tokodon-22.11.1.ebuild => tokodon-23.02.0.ebuild} | 8 +++----- 3 files changed, 5 insertions(+), 7 deletions(-) rename kde-apps/tokodon/{tokodon-22.11.1.ebuild => tokodon-23.02.0.ebuild} (87%) diff --git a/kde-apps/tokodon/Manifest b/kde-apps/tokodon/Manifest index 55d41b6ff3..364a6e30e3 100644 --- a/kde-apps/tokodon/Manifest +++ b/kde-apps/tokodon/Manifest @@ -1,2 +1,2 @@ -DIST tokodon-21.11.1.tar.xz 165120 BLAKE2B 240e3028deeb7b15b62344c7e0a66f593f92a6b716c435eed4d402ec3b4ab2816c421e8054cc086d37930706889448ae72a5d7989344b6bcb4731552a2f04213 SHA512 059c760f749e006365464bfcbc13aef420991b3047c398d5cb2dbea2b76ba211428e112594402c558f9ec742d532c74ff7fc7739a27357d61c6bcd416c19403d DIST tokodon-23.01.0.tar.xz 189660 BLAKE2B 5ce4652c227fca34bc24a567d25f4ea05bbfb197d85c6243c2253c6653478f4b3950b26af1257018943abaa36669d7013940554689e341fc82080f3baa166b1f SHA512 c7ee8d0b3599b9e729f36097b49faf5b9188898dc4cdd23f98bbb80d4860de0ddade0bc519d6aa91f6e4c92ad62871855569614c15666de7bb8fb70b192429d9 +DIST tokodon-23.02.0.tar.xz 211528 BLAKE2B 1c90a1789b5a335d0e30664261e55ca3f49ed7cf7239ab2d378bd05328c547744eaa222828ea2d3f310a4b6b694d5a70c513cb21a1fd5f88060f92d2414a6cb7 SHA512 72fe4372b8e90ff6b2c47b30c473b083a38fc4349b1dbca241d6966734bbb0cafe2a761c6424a2f47f59325b0d84779b80b0769a0a51b9820713466ffff8b581 diff --git a/kde-apps/tokodon/tokodon-23.01.0.ebuild b/kde-apps/tokodon/tokodon-23.01.0.ebuild index ee63446bc3..4bc30658e7 100644 --- a/kde-apps/tokodon/tokodon-23.01.0.ebuild +++ b/kde-apps/tokodon/tokodon-23.01.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 KFMIN=5.77.0 QTMIN=5.15.0 -ECM_TEST=optional +ECM_TEST=forceoptional inherit ecm DESCRIPTION="Mastodon client for Plasma and Plasma Mobile" diff --git a/kde-apps/tokodon/tokodon-22.11.1.ebuild b/kde-apps/tokodon/tokodon-23.02.0.ebuild similarity index 87% rename from kde-apps/tokodon/tokodon-22.11.1.ebuild rename to kde-apps/tokodon/tokodon-23.02.0.ebuild index d0d595f854..d33eb53a8a 100644 --- a/kde-apps/tokodon/tokodon-22.11.1.ebuild +++ b/kde-apps/tokodon/tokodon-23.02.0.ebuild @@ -1,18 +1,16 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 KFMIN=5.77.0 QTMIN=5.15.0 -ECM_TEST=optional +ECM_TEST=forceoptional inherit ecm -MY_P="${PN}-21.11.1" # upstream mistake DESCRIPTION="Mastodon client for Plasma and Plasma Mobile" HOMEPAGE="https://invent.kde.org/network/tokodon" -SRC_URI="mirror://kde/unstable/${PN}/${MY_P}.tar.xz" -S="${WORKDIR}/${MY_P}" +SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" LICENSE="|| ( GPL-2 GPL-3 ) AGPL-3+ CC-BY-SA-4.0 CC0-1.0 GPL-2+ GPL-3 GPL-3+ LGPL-2+ LGPL-2.1+ MIT" SLOT="5" From 7adc76b76cacb1965d6394a4d0a78dd0b2194c17 Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Sat, 11 Mar 2023 16:36:14 +0500 Subject: [PATCH 06/13] kde-apps/tokodon: add missing dep Signed-off-by: Anna (cybertailor) Vyalkova --- kde-apps/tokodon/tokodon-23.02.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/kde-apps/tokodon/tokodon-23.02.0.ebuild b/kde-apps/tokodon/tokodon-23.02.0.ebuild index d33eb53a8a..7790323f82 100644 --- a/kde-apps/tokodon/tokodon-23.02.0.ebuild +++ b/kde-apps/tokodon/tokodon-23.02.0.ebuild @@ -28,6 +28,7 @@ DEPEND=" >=dev-qt/qtwebsockets-${QTMIN}:5 >=dev-qt/qtwidgets-${QTMIN}:5 >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 >=kde-frameworks/kcoreaddons-${KFMIN}:5 >=kde-frameworks/kdbusaddons-${KFMIN}:5 >=kde-frameworks/ki18n-${KFMIN}:5 From 37c96a0279839f3290b4609d7b381c591cd6d6b9 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sat, 11 Mar 2023 14:03:01 +0100 Subject: [PATCH 07/13] guru/gui-apps: add 1.5.4 Signed-off-by: Michael Mair-Keimberger --- gui-apps/darkman/Manifest | 2 ++ gui-apps/darkman/darkman-1.5.4.ebuild | 50 +++++++++++++++++++++++++++ gui-apps/darkman/metadata.xml | 11 ++++++ 3 files changed, 63 insertions(+) create mode 100644 gui-apps/darkman/Manifest create mode 100644 gui-apps/darkman/darkman-1.5.4.ebuild create mode 100644 gui-apps/darkman/metadata.xml diff --git a/gui-apps/darkman/Manifest b/gui-apps/darkman/Manifest new file mode 100644 index 0000000000..3643e19a23 --- /dev/null +++ b/gui-apps/darkman/Manifest @@ -0,0 +1,2 @@ +DIST darkman-1.5.4-vendor.tar.xz 384628 BLAKE2B 3af63f7e676e4ac8209fc490b6e6ea8717268c76917887a3a744926e000a4a9adfae63981376fe88ea0a0cd16273824b23c23f2a85e11f65c13292d921c92958 SHA512 31dfc7ef1005c2bf59b0df32820070b217c7243c5256fb743b1a152619dd57da1a72d5db7a34d8715e3a1f0aa622fd5ba005bfdb1a179d00438e77bc79a9d25e +DIST darkman-v1.5.4.tar.bz2 21648 BLAKE2B b81f09f0e9cfaf21fca700314a68380672bfbf96b4db1ea9d878de7daf2e2470a83b99e829794384b853161b9ff3687a0587834e5d2a0f14ee6a5436a598fcfe SHA512 a8f687bdb8ca8233434919d0428c7899953f79e80eb1471bb28e695e73906c1577f6e6fb495ae67dee0a44ff9cefffd1eb5a1288d3dd0a33673646e408f02556 diff --git a/gui-apps/darkman/darkman-1.5.4.ebuild b/gui-apps/darkman/darkman-1.5.4.ebuild new file mode 100644 index 0000000000..6f0b4c3430 --- /dev/null +++ b/gui-apps/darkman/darkman-1.5.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit systemd go-module + +DESCRIPTION="Framework for dark and light mode transitions" +HOMEPAGE="https://gitlab.com/WhyNotHugo/darkman" +SRC_URI="https://gitlab.com/whynothugo/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" +SRC_URI+=" https://files.levelnine.at/${P}-vendor.tar.xz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+man +examples" + +S="${WORKDIR}/${PN}-v${PV}" + +RDEPEND="app-misc/geoclue" +BDEPEND="man? ( app-text/scdoc )" + +DOCS=( CHANGELOG.md README.md ) + +src_compile() { + ego build -v -x -o ${PN} -ldflags="-X main.Version=${PV}" ./cmd/${PN} + + if use man; then + scdoc < ./${PN}.1.scd > ./${PN}.1 || die + fi +} + +src_install() { + dobin ${PN} + + systemd_dounit ${PN}.service + doman ${PN}.1 + + use examples && DOCS+=( examples/. ) + einstalldocs + + insinto /usr/share/dbus-1/services + doins contrib/dbus/* + + insinto /usr/share/xdg-desktop-portal/portals/ + doins contrib/portal/darkman.portal + + dodir /etc/env.d/ + echo "XDG_DATA_DIRS=\"~/.local/share/\"" >> "${ED}"/etc/env.d/99darkman || die +} diff --git a/gui-apps/darkman/metadata.xml b/gui-apps/darkman/metadata.xml new file mode 100644 index 0000000000..348eb54083 --- /dev/null +++ b/gui-apps/darkman/metadata.xml @@ -0,0 +1,11 @@ + + + + + mmk@levelnine.at + Michael Mair-Keimberger + + + WhyNotHugo/darkman + + From 3639e8b609bb9d2b0c85cc1cccb510023f48a520 Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sun, 12 Mar 2023 10:33:02 +0200 Subject: [PATCH 08/13] dev-python/Pyro5: update SRC_URI Switch from gh to pypi. Tests pass. Signed-off-by: Viorel Munteanu --- dev-python/Pyro5/Manifest | 2 +- dev-python/Pyro5/Pyro5-5.14.ebuild | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-python/Pyro5/Manifest b/dev-python/Pyro5/Manifest index 199b3fce21..a1dc237c22 100644 --- a/dev-python/Pyro5/Manifest +++ b/dev-python/Pyro5/Manifest @@ -1 +1 @@ -DIST Pyro5-5.14.gh.tar.gz 432770 BLAKE2B 9424441166b662bedbef89099fe00d7a6a608023b2416515f409c42eeaba47a1977e5bdc73bf6d7058fc4b35103e839d60506d59aae9390071be680e740c804b SHA512 7341e88cf86a6832b2bf9681f58d998d10c3c01db70ff6e11e90c927d25581cb5606edaf52fbb0b0b44137cb129661b68769ca8ae2fd61d5461f18c74214831c +DIST Pyro5-5.14.tar.gz 447725 BLAKE2B 0382fd69df02a2977df6238bdfe7aed0f52253cc3a8fc684d6e08caa2c06c5c572dee15c53bb463e5e477941ec67e8e8c9358eb8cda7b413c9debf2ab3a292f7 SHA512 0ca65ad01a950f59d8e2cf745e5b61065b5f02d361651ae75dc27de921ea04b5f65bd9fd18ed7ae9b0d055eda3ceb19dffd10295061e496bd1fa70563339db2d diff --git a/dev-python/Pyro5/Pyro5-5.14.ebuild b/dev-python/Pyro5/Pyro5-5.14.ebuild index ec6292b273..1a6246628a 100644 --- a/dev-python/Pyro5/Pyro5-5.14.ebuild +++ b/dev-python/Pyro5/Pyro5-5.14.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,7 +6,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 +inherit distutils-r1 pypi DESCRIPTION="Distributed object middleware for Python (RPC)" HOMEPAGE=" @@ -14,7 +14,8 @@ HOMEPAGE=" https://pypi.org/project/Pyro5/ https://github.com/irmen/Pyro5 " -SRC_URI="https://github.com/irmen/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" +SRC_URI="$(pypi_sdist_url --no-normalize "${PN^}" "${PV}")" +S=${WORKDIR}/${P^} LICENSE="MIT" SLOT="0" From 9bb9139517678952c13e28421e68a0a0179193ac Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sun, 12 Mar 2023 10:40:45 +0200 Subject: [PATCH 09/13] dev-python/wrapio: update SRC_URI Switch from gh to pypi. Signed-off-by: Viorel Munteanu --- dev-python/wrapio/Manifest | 2 +- dev-python/wrapio/wrapio-2.0.0.ebuild | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/wrapio/Manifest b/dev-python/wrapio/Manifest index d7b8acac45..4556e129ad 100644 --- a/dev-python/wrapio/Manifest +++ b/dev-python/wrapio/Manifest @@ -1 +1 @@ -DIST wrapio-2.0.0.gh.tar.gz 7239 BLAKE2B 228d1a0367bdcb1c69e9035de2bd780d9a47b3a6b5ccb9080fc7f9974dafdfec3ccca8888e9f4ff7368d4d5c06424cecc5832a38db60410954cde561a0c2e272 SHA512 09056de108f6f5fc6af83534a9e8a9c80c70ead6d1d492f3dfd573b38a5dd909c837934309f9f7611394768573848afa737484b3f64ff682bcf6c7a091e15a46 +DIST wrapio-2.0.0.tar.gz 5197 BLAKE2B 1fc6bc0792b0a14b4c39bf9be85baa33580e98535d44d2aae726713a838e99b0b8e3ce69d17242843a754966dc6fc502452a8c095079b785f622883620ed9a68 SHA512 ae15cf05c7689a738514f4c6bd815bdbc90b6929a1da958486cd3b0bd5ee7055fa13d7e8edccbff6cb5fdf07088ddad316d9cd42e2d2e97fe56687b8f73cc84c diff --git a/dev-python/wrapio/wrapio-2.0.0.ebuild b/dev-python/wrapio/wrapio-2.0.0.ebuild index a98841ada6..afd8c18790 100644 --- a/dev-python/wrapio/wrapio-2.0.0.ebuild +++ b/dev-python/wrapio/wrapio-2.0.0.ebuild @@ -5,14 +5,13 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 +inherit distutils-r1 pypi DESCRIPTION="Handling event-based streams in Python" HOMEPAGE=" https://github.com/Exahilosys/wrapio https://pypi.org/project/wrapio/ " -SRC_URI="https://github.com/Exahilosys/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" LICENSE="MIT" SLOT="0" From 447a800f8c474c2035f1ff9bf6e0d70b9bd5c0d3 Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sun, 12 Mar 2023 10:51:23 +0200 Subject: [PATCH 10/13] dev-python/desktop-notifier: update SRC_URI Switch from gh to pypi. Signed-off-by: Viorel Munteanu --- dev-python/desktop-notifier/Manifest | 2 +- dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/desktop-notifier/Manifest b/dev-python/desktop-notifier/Manifest index d9baea9530..9ae8cee461 100644 --- a/dev-python/desktop-notifier/Manifest +++ b/dev-python/desktop-notifier/Manifest @@ -1 +1 @@ -DIST desktop-notifier-3.4.3.gh.tar.gz 4598199 BLAKE2B 318ad6297f582646eb8031d0cda18d6f93b667d4dd76b66bf4c1ff3a32d731ec6c6fd872171a674a687176d55f07cd12c8ec56262662dd9d606a88ea956b90ee SHA512 fde2618bc47ad0935717d5d2278f27d0be38cc956851912f8cd22e539ae82787d7578bcfcf7965246bc02d3f2c66a7b6c4531f9583103d36f0082553c95e907f +DIST desktop-notifier-3.4.3.tar.gz 29196 BLAKE2B 975ff8e7f9b775a5272c3db426ddb35aacff4986531bd18dc4c06859f14966cf8d701ed2695fe5cf9f42f650ae881c7c27d66a4edc0c2305f304b9122083bb2c SHA512 163ef300c3929f3e92a8ac1018d5f22b439d5381df825dab08796897267b7bbf8e3053cd2428c2a41b875b44ee4f7637974a87897e24db0f43448342dd243265 diff --git a/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild b/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild index 08b21c0bb3..9df37dfe61 100644 --- a/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild +++ b/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild @@ -1,12 +1,13 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 -inherit distutils-r1 +inherit distutils-r1 pypi DESCRIPTION="desktop-notifier is a Python library for cross-platform desktop notifications" HOMEPAGE=" @@ -14,7 +15,6 @@ HOMEPAGE=" https://pypi.org/project/desktop-notifier/ https://github.com/samschott/desktop-notifier " -SRC_URI="https://github.com/samschott/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" LICENSE="MIT" SLOT="0" From 12fb3ef278e662d4ee415abcbdf87e389404ed8e Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sun, 12 Mar 2023 10:55:14 +0200 Subject: [PATCH 11/13] dev-python/sdnotify: update SRC_URI Switch from gh to pypi. Signed-off-by: Viorel Munteanu --- dev-python/sdnotify/Manifest | 2 +- dev-python/sdnotify/sdnotify-0.3.2.ebuild | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/sdnotify/Manifest b/dev-python/sdnotify/Manifest index b2758b520d..73384e0746 100644 --- a/dev-python/sdnotify/Manifest +++ b/dev-python/sdnotify/Manifest @@ -1 +1 @@ -DIST bb4242-sdnotify-0.3.2.gh.tar.gz 3302 BLAKE2B add938bb947d8834abc9cbfaae28dfd85d9e9580d130f6dac0660a1f06f291723b909eac61eb39023d999566568985f93ab07587ab235bdfe79fe09efca28874 SHA512 08fbbd2865ac075f0faa4ee3c1a9e5afb824318a4863cc603bc544ebb173d9f1caf4941df19470c0c506b4f518cc1f30ec1d8be70b03a46afadf490765af2e55 +DIST sdnotify-0.3.2.tar.gz 2459 BLAKE2B 1d1846e37889c36cfa7242d14e4040ebb9b73d3e53f5a3423447ae1a4912373e4249faa7803ac212e3c7d64371d1fe9e1be2d56f8604791cead2cbe22e422053 SHA512 f7e7d38c8d7f56ebad8b0343361a0bf6177208b94916430343a0a392015622d7bb62aa391e17956e5aa9a0d7189c79268cb86c46bb52b36488df5aebca5cfbd3 diff --git a/dev-python/sdnotify/sdnotify-0.3.2.ebuild b/dev-python/sdnotify/sdnotify-0.3.2.ebuild index a15bda8890..d2f521ff83 100644 --- a/dev-python/sdnotify/sdnotify-0.3.2.ebuild +++ b/dev-python/sdnotify/sdnotify-0.3.2.ebuild @@ -1,18 +1,17 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 +inherit distutils-r1 pypi DESCRIPTION="Python implementation of the systemd sd_notify protocol" HOMEPAGE=" https://github.com/bb4242/sdnotify https://pypi.org/project/sdnotify/ " -SRC_URI="https://github.com/bb4242/${PN}/archive/refs/tags/v${PV}.tar.gz -> bb4242-${P}.gh.tar.gz" LICENSE="MIT" SLOT="0" From 0b6272f87c9482115d5abcc23ad5f2dbbf7b325c Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sun, 12 Mar 2023 11:01:16 +0200 Subject: [PATCH 12/13] dev-python/stone: update SRC_URI Switch from gh to pypi. Tests pass. Signed-off-by: Viorel Munteanu --- dev-python/stone/Manifest | 2 +- dev-python/stone/stone-3.3.1.ebuild | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/stone/Manifest b/dev-python/stone/Manifest index 8a0159f953..619d554c04 100644 --- a/dev-python/stone/Manifest +++ b/dev-python/stone/Manifest @@ -1 +1 @@ -DIST stone-3.3.1.gh.tar.gz 282831 BLAKE2B b9a866e43feedea28cd33b89f78100be520a2756fa78888e9a786ae27942a5c19df51010c0af952de70c782d3fc3588de1ae0f58450d807053989bb91d285f15 SHA512 ee07f01b6f10e771afbe6ca6f07d7efa24a5460e5c163f339ae84a8b7742a659f5cb535e674a2f315d1bfa95b7c02e56f46db1f397188b5b6705f6c00c1e9d73 +DIST stone-3.3.1.tar.gz 282831 BLAKE2B b9a866e43feedea28cd33b89f78100be520a2756fa78888e9a786ae27942a5c19df51010c0af952de70c782d3fc3588de1ae0f58450d807053989bb91d285f15 SHA512 ee07f01b6f10e771afbe6ca6f07d7efa24a5460e5c163f339ae84a8b7742a659f5cb535e674a2f315d1bfa95b7c02e56f46db1f397188b5b6705f6c00c1e9d73 diff --git a/dev-python/stone/stone-3.3.1.ebuild b/dev-python/stone/stone-3.3.1.ebuild index e588e6fa82..64923ef1e0 100644 --- a/dev-python/stone/stone-3.3.1.ebuild +++ b/dev-python/stone/stone-3.3.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..11} ) -inherit distutils-r1 +inherit distutils-r1 pypi DESCRIPTION="The Official Api Spec Language for Dropbox" HOMEPAGE=" @@ -14,7 +14,6 @@ HOMEPAGE=" https://github.com/dropbox/stone https://pypi.org/project/stone/ " -SRC_URI="https://github.com/dropbox/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" LICENSE="MIT" SLOT="0" From e7dd81e5b60a17f5f653e8ef4e0115266facc5f7 Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sun, 12 Mar 2023 11:03:24 +0200 Subject: [PATCH 13/13] dev-python/survey: update SRC_URI Switch from gh to pypi. Signed-off-by: Viorel Munteanu --- dev-python/survey/Manifest | 2 +- dev-python/survey/survey-3.4.3.ebuild | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/survey/Manifest b/dev-python/survey/Manifest index e16a287dce..6b44430cb7 100644 --- a/dev-python/survey/Manifest +++ b/dev-python/survey/Manifest @@ -1 +1 @@ -DIST survey-3.4.3.gh.tar.gz 13533965 BLAKE2B 4b2e881bdddb3c606cc356ab1883545ea98b433e8568fc421ae0601c75e9828f1facfaa0b988da19962f93ded7b16ecd4d495c02022b5d1f99a00ba4c6996362 SHA512 a4033a54a9eef5e9082d9903a0b9cc158897d9f58696905c5fb551c64d55fe13d9a687ca161555b280002df3d0f9405dfcbf16830f691004fec614dd980b3e32 +DIST survey-3.4.3.tar.gz 21219 BLAKE2B e866addd9233409c603f2b34bbf811209f3f6c2ade1bee00258c4f25d741dc526948d16b2e9e0dc3632e6e20fa7863f573c4c27ed1f48ddaa954c7d53a8c51e3 SHA512 47ff72dd1223a32ec038ccf57709e8fe64806ecc9bb8e54daaced27afaa1c2a45e76fc1b149232a107729c462db7657ad0fd08d8b14bb314e3905aabd23fff4a diff --git a/dev-python/survey/survey-3.4.3.ebuild b/dev-python/survey/survey-3.4.3.ebuild index a631e53b49..51f5141db3 100644 --- a/dev-python/survey/survey-3.4.3.ebuild +++ b/dev-python/survey/survey-3.4.3.ebuild @@ -1,18 +1,17 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 +inherit distutils-r1 pypi DESCRIPTION="A simple library for creating beautiful interactive prompts" HOMEPAGE=" https://github.com/Exahilosys/survey https://pypi.org/project/survey/ " -SRC_URI="https://github.com/Exahilosys/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" LICENSE="MIT" SLOT="0"