diff --git a/app-portage/gen-pkgs/Manifest b/app-portage/gen-pkgs/Manifest index 6ec16ed..474c6a9 100644 --- a/app-portage/gen-pkgs/Manifest +++ b/app-portage/gen-pkgs/Manifest @@ -1 +1,2 @@ DIST gen-pkgs-1.0.0.tar.gz 15378 BLAKE2B dc157a9129557cb7cd9f01ca6f7a8fcd0ac3192e30ac52be289789351f5cfacebb1f184b452e594b42038c6840b61cb1b117167533971a1ac3cf7eab29a4a971 SHA512 b06d810140629d72f9737607d36b45211df6d376bcd0b4d27af28420c4b1e1905181299f6b3d58271e12106c1b728a44401a615d59ca3404d837dbaf9987b274 +DIST gen-pkgs-1.2.0.tar.bz2 14723 BLAKE2B b997eea39ded852abf9fc5bde42e587ef5b4486641da9143275d1a89b3632f9e25d56ef0722612fb537f1fc7f4370979a50d5f9d50825048a8dd0b419803e349 SHA512 01d0265909a3a49437a7dfab77750a1550625c58588fa25b405c1b279796cdc68f57eec899ab0f035df9541abef8647dfec973f225f9bd886fc7a2d6f006608e diff --git a/app-portage/gen-pkgs/gen-pkgs-1.2.0.ebuild b/app-portage/gen-pkgs/gen-pkgs-1.2.0.ebuild new file mode 100644 index 0000000..141d7de --- /dev/null +++ b/app-portage/gen-pkgs/gen-pkgs-1.2.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Create HTML page based off of a given overlay URL" +HOMEPAGE="https://gitlab.com/src_prepare/gen-pkgs" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI=" + https://gitlab.com/src_prepare/${PN}.git + https://github.com/xgqt/${PN}.git + " +else + SRC_URI=" + https://gitlab.com/src_prepare/${PN}/-/archive/${PV}/${P}.tar.bz2 + " + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3" +SLOT="0" + +RDEPEND=" + app-portage/euscan-ng + app-portage/gentoolkit + dev-util/pkgcheck +" + +src_install() { + default + + newbin gen-pkgs.sh gen-pkgs +} diff --git a/app-portage/gen-pkgs/gen-pkgs-9999.ebuild b/app-portage/gen-pkgs/gen-pkgs-9999.ebuild index fe48f5b..141d7de 100644 --- a/app-portage/gen-pkgs/gen-pkgs-9999.ebuild +++ b/app-portage/gen-pkgs/gen-pkgs-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="Create HTML page based off of a given overlay URL" HOMEPAGE="https://gitlab.com/src_prepare/gen-pkgs" @@ -14,21 +14,18 @@ if [[ "${PV}" == *9999* ]]; then " else SRC_URI=" - https://gitlab.com/src_prepare/${PN}/-/archive/${PV}/${PN}-${PV}.tar.gz - https://github.com/xgqt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz + https://gitlab.com/src_prepare/${PN}/-/archive/${PV}/${P}.tar.bz2 " KEYWORDS="~amd64" fi -RESTRICT="mirror" LICENSE="GPL-3" SLOT="0" RDEPEND=" app-portage/euscan-ng app-portage/gentoolkit - app-portage/repoman - sys-apps/busybox + dev-util/pkgcheck " src_install() {