From bcb1bf8297438e33e98fec6991ba68dec0f4dd7c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 10 Apr 2024 12:32:09 +0100 Subject: gentoo auto-resync : 10:04:2024 - 12:32:09 --- dev-util/bugbite-cli/Manifest | 5 +-- dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild | 48 ------------------------ dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild | 35 ----------------- dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild | 48 ++++++++++++++++++++++++ 4 files changed, 50 insertions(+), 86 deletions(-) delete mode 100644 dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild delete mode 100644 dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild create mode 100644 dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild (limited to 'dev-util/bugbite-cli') diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest index 87073e1001a8..fda0ab14c8de 100644 --- a/dev-util/bugbite-cli/Manifest +++ b/dev-util/bugbite-cli/Manifest @@ -1,4 +1,3 @@ -DIST bugbite-cli-0.0.7.tar.xz 28365584 BLAKE2B e1f38972e6ca43ae24761baf4c5c4675a171663c7347783134962d090bb12860fab84a3730bf894e86235f26f625a765c323fc659b90b729131d780bb6771856 SHA512 6330e1dd86ab1958681e14104da2e854fa3223c585fe14b913fb3777318a8b367579aa483c158a03fd89811ad4a28624d9629e8ea8682cffa5d2adb769a53d2f -EBUILD bugbite-cli-0.0.7-r1.ebuild 1309 BLAKE2B f236d12430edf2b11ef1544b2cbc8824e14c50c4a4c625878e16a7ba16d9afb24ab2aaefd831aa4b880dafdc43688d69360b54a62324935955358d7900d5b6bc SHA512 cd9d38dcf9e9290f2a1ca0dc7c4ddd2417c6657edce7d8813606bd0877de39eb9aa05e8e6c9ab65e43315d19ff3160578014d9ad13e65f8402d79bd329e1a583 -EBUILD bugbite-cli-0.0.7.ebuild 887 BLAKE2B f029a0554e288d98ef42e8b29fc44b587c5a79635b55b4597bcc7ba809a5d2faf157e19b4c7f15c271ff1b5ddabd351d5b7587ac6705e388ebf9aff6f272a39c SHA512 f694f8471c960d28dbcdd68930f094231d8215a427ed694b1ed9ba6529444a18711668a51fdef6715b9d39de0e6064d7574830094a3028f31cea418843560027 +DIST bugbite-cli-0.0.8.tar.xz 25695676 BLAKE2B 9d9d1f65219d5e8e18e0cf785d3c8b22e5b02d71066cbd131c74d980b90d5479425ea9a4427eb63931c871a83a7f38c9e6de9fc3f6fa0404907b523895635232 SHA512 f708a1bb4604a75dbadca13a64db1952194db4b409ba1a5fc0e76ced5ebd00f3a97f563855f030c72b1296c10955260183c1eddee18c5bb76429edc1e8006a90 +EBUILD bugbite-cli-0.0.8.ebuild 1315 BLAKE2B 7cca59365a99b42c1b95f9c762ee627d98d6ae39c2728a961c69c96c350ef7744b070006e8a4624e5f3f3d2cdd61869fdd2c0244cefeb146b17298c9d0b707dc SHA512 ea930a8166215298c1fa31850d856c5bbaf4076d90fd7ddc85c500fbbcadffdf03974fb14066f4d7fd84005131da708fdd73d3d928ad3ba8179b0f2f883495a0 MISC metadata.xml 493 BLAKE2B 99fd8405920676653bbb75a4d71b81789d03638b4ad3970a23d3335c9af73fad4947000f40f6a211fc3ab9e1362d5cd19eeb26d80e93bc8d0838fdddaf179ed9 SHA512 5ad93bfef807b5d88adec2773e6496a4462f7e000ac15d4d4e7ea9b0646d530290bd9d7be23de31c5bfd33e352b2ea66fc3937ef417ffcc93232842132db3b6d diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild deleted file mode 100644 index 6a39a6bf22b6..000000000000 --- a/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cargo edo shell-completion - -DESCRIPTION="A command line tool for bug, issue, and ticket mangling" -HOMEPAGE="https://github.com/radhermit/bugbite" -SRC_URI="https://github.com/radhermit/bugbite/releases/download/${P}/${P}.tar.xz" -LICENSE="0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016 Unlicense ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="static test" -RESTRICT="!test? ( test ) " - -BDEPEND=" - >=virtual/rust-1.75 - test? ( dev-util/cargo-nextest ) -" - -QA_FLAGS_IGNORED="usr/bin/bite" - -pkg_setup() { - if [[ ${MERGE_TYPE} != binary ]] && use static ; then - local rust_target=$( rustc -vV 2>/dev/null | sed -n 's|^host: ||p' ) - [[ -z ${rust_target} ]] && die "Failed to read host target from rustc!" - export RUSTFLAGS="-C target-feature=+crt-static ${RUSTFLAGS}" - export static_stuff="--target ${rust_target}" - fi -} - -src_configure() { - cargo_src_configure ${static_stuff} -} - -src_test() { - edo cargo nextest run $(usev !debug '--release') --color always --all-features --tests ${static_stuff} -} - -src_install() { - cargo_src_install - - doman man/* - dofishcomp shell/bite.fish - dozshcomp shell/_bite - newbashcomp shell/bite.bash bite -} diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild deleted file mode 100644 index 897557d9ca73..000000000000 --- a/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cargo edo shell-completion - -DESCRIPTION="A command line tool for bug, issue, and ticket mangling" -HOMEPAGE="https://github.com/radhermit/bugbite" -SRC_URI="https://github.com/radhermit/bugbite/releases/download/${P}/${P}.tar.xz" -LICENSE="0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016 Unlicense ZLIB" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" -RESTRICT="!test? ( test ) " - -BDEPEND=" - >=virtual/rust-1.75 - test? ( dev-util/cargo-nextest ) -" - -QA_FLAGS_IGNORED="usr/bin/bite" - -src_test() { - edo cargo nextest run $(usev !debug '--release') --color always --all-features --tests -} - -src_install() { - cargo_src_install - - doman man/* - dofishcomp shell/bite.fish - dozshcomp shell/_bite - newbashcomp shell/bite.bash bite -} diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild new file mode 100644 index 000000000000..46eb3f90c242 --- /dev/null +++ b/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild @@ -0,0 +1,48 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cargo edo shell-completion + +DESCRIPTION="A command line tool for bug, issue, and ticket mangling" +HOMEPAGE="https://github.com/radhermit/bugbite" +SRC_URI="https://github.com/radhermit/bugbite/releases/download/${P}/${P}.tar.xz" +LICENSE="0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016 Unlicense ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64" +IUSE="static test" +RESTRICT="!test? ( test ) " + +BDEPEND=" + >=virtual/rust-1.75 + test? ( dev-util/cargo-nextest ) +" + +QA_FLAGS_IGNORED="usr/bin/bite" + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]] && use static ; then + local rust_target=$( rustc -vV 2>/dev/null | sed -n 's|^host: ||p' ) + [[ -z ${rust_target} ]] && die "Failed to read host target from rustc!" + export RUSTFLAGS="-C target-feature=+crt-static ${RUSTFLAGS}" + export static_stuff="--target ${rust_target}" + fi +} + +src_configure() { + cargo_src_configure ${static_stuff} +} + +src_test() { + edo cargo nextest run $(usev !debug '--release') --color always --features test --tests ${static_stuff} +} + +src_install() { + cargo_src_install + + doman man/* + dofishcomp shell/bite.fish + dozshcomp shell/_bite + newbashcomp shell/bite.bash bite +} -- cgit v1.2.3