* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-10 10:25 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-10 10:25 UTC (permalink / raw
To: gentoo-commits
commit: a7069b8ded37ef99bc7cf52c727084eac067c735
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 10:24:43 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 10:24:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7069b8d
dev-util/bugbite-cli: fix test syntax
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild
index 035c44ec12d5..46eb3f90c242 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild
@@ -35,7 +35,7 @@ src_configure() {
}
src_test() {
- edo cargo nextest run $(usev !debug '--release') --color always --all-features --tests ${static_stuff}
+ edo cargo nextest run $(usev !debug '--release') --color always --features test --tests ${static_stuff}
}
src_install() {
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-11-09 13:48 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-11-09 13:48 UTC (permalink / raw
To: gentoo-commits
commit: bb9b6ccb049743816237f87e96055ac0f5f5dd06
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 9 13:47:21 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 9 13:48:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9b6ccb
dev-util/bugbite-cli: add rust_pkg_setup call
This was missed as it got bumped while the eclass work was being rebased.
Closes: https://bugs.gentoo.org/943137
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
index adcbe9bb13cb..a346a3ca7fff 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
@@ -27,6 +27,7 @@ BDEPEND="
QA_FLAGS_IGNORED="usr/bin/bite"
pkg_setup() {
+ rust_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!"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-11-09 13:48 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-11-09 13:48 UTC (permalink / raw
To: gentoo-commits
commit: 30ce9bfc11f9ecbe7edfa81e22419c4fb777b6fe
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 9 13:46:44 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 9 13:48:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ce9bfc
dev-util/bugbite-cli: fix indentation
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.12-r1.ebuild | 2 +-
dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.12-r1.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.12-r1.ebuild
index b8f9a8d31389..f06cb294c832 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.12-r1.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.12-r1.ebuild
@@ -33,7 +33,7 @@ pkg_setup() {
}
src_configure() {
- cargo_src_configure ${static_stuff}
+ cargo_src_configure ${static_stuff}
}
src_test() {
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
index d9c801ecf1fb..adcbe9bb13cb 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
@@ -39,7 +39,7 @@ src_configure() {
local myfeatures=(
$(usev openssl native-tls)
)
- cargo_src_configure --no-default-features ${static_stuff}
+ cargo_src_configure --no-default-features ${static_stuff}
}
src_test() {
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-11-08 11:36 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-11-08 11:36 UTC (permalink / raw
To: gentoo-commits
commit: dd68b1c24d4c4b8031324c3db1997abd7512c422
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 8 11:35:06 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Nov 8 11:35:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd68b1c2
dev-util/bugbite-cli: version bump to 0.0.13 - add openssl backend
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 +
dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild | 55 ++++++++++++++++++++++++++
dev-util/bugbite-cli/metadata.xml | 3 ++
3 files changed, 59 insertions(+)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index 162ef4c98893..1696bfaf76ff 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1 +1,2 @@
DIST bugbite-cli-0.0.12.tar.xz 21202148 BLAKE2B dd7d7b0927741d77b3a724273360348558fc2675e22e948f2f9e2b418db6a263986e051ebb700094610e98021af6264288ebcbe271c0efac88c8091f9cd0725e SHA512 2056450d13ccbdf484ef2f4e4ea663a4f10fbd4222574e630510a85a0d10b2c939e9250be947b3bd1ea3a43a78f946b6e142db94f650aab0cd46db910f369411
+DIST bugbite-cli-0.0.13.tar.xz 22286212 BLAKE2B c906446a89ae2c7346318cffb96c93178585ef42589bba4df4ecdf906e8890a922324d484bbd252e119a8d47370c63816dfb0a55481586de6f30f13d7d3d84bc SHA512 40971032ff4e63416c3383a55418ba7c0c4c85321caace435000018da93176b6b1d83ee04aa4abdfa31646c9b6d1777c9e5acb035b14bca210bfc22ffc7fd90d
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
new file mode 100644
index 000000000000..dacf74522b2c
--- /dev/null
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild
@@ -0,0 +1,55 @@
+# 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 ~x86"
+IUSE="openssl static test"
+RESTRICT="!test? ( test ) "
+
+BDEPEND="
+ >=virtual/rust-1.80
+ openssl? (
+ !static? ( dev-libs/openssl:= )
+ static? ( dev-libs/openssl:=[static-libs] )
+ )
+ 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() {
+ local myfeatures=(
+ $(usev openssl native-tls)
+ )
+ cargo_src_configure --no-default-features ${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
+}
diff --git a/dev-util/bugbite-cli/metadata.xml b/dev-util/bugbite-cli/metadata.xml
index e71a8c41c9c8..1b88e6c112b7 100644
--- a/dev-util/bugbite-cli/metadata.xml
+++ b/dev-util/bugbite-cli/metadata.xml
@@ -13,4 +13,7 @@
<upstream>
<remote-id type="github">radhermit/bugbite</remote-id>
</upstream>
+ <use>
+ <flag name="openssl">Use <pkg>dev-libs/openssl</pkg> as a crypto backend</flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-09-12 14:48 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-09-12 14:48 UTC (permalink / raw
To: gentoo-commits
commit: beb10fba916343734629a53e21713f0623c72c89
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 12 14:48:46 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Sep 12 14:48:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beb10fba
dev-util/bugbite-cli: update minimum rust version
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild
index 54904ffd4168..c6f7e464be0b 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild
@@ -15,7 +15,7 @@ IUSE="static test"
RESTRICT="!test? ( test ) "
BDEPEND="
- >=virtual/rust-1.75
+ >=virtual/rust-1.79
test? ( dev-util/cargo-nextest )
"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-09-12 9:44 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-09-12 9:44 UTC (permalink / raw
To: gentoo-commits
commit: d1b12de488022ec3f79d5e4606a98289ca407aa9
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 12 09:44:03 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Sep 12 09:44:03 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b12de4
dev-util/bugbite-cli: add 0.0.12
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 +
dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild | 48 ++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index 6e2786236cbc..f04c0cb5adab 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1 +1,2 @@
DIST bugbite-cli-0.0.11.tar.xz 21068652 BLAKE2B a75137923c1578c8411a3b701564ad9883352478ba0467f7202ae3f668ae42d6890075b7a9b1f1d8ae1eb54a4280f3925f13d4b8656056e56c2a32f9f790ccd1 SHA512 b1df78427a3f5d1c44df95d077284fec5112385f31a480c6488fef20b53b43cbf1f80b1dcffd78b40f04d62364f8a8a7fd17f12ca0985d10ad3ee8f23ec3ae59
+DIST bugbite-cli-0.0.12.tar.xz 21202148 BLAKE2B dd7d7b0927741d77b3a724273360348558fc2675e22e948f2f9e2b418db6a263986e051ebb700094610e98021af6264288ebcbe271c0efac88c8091f9cd0725e SHA512 2056450d13ccbdf484ef2f4e4ea663a4f10fbd4222574e630510a85a0d10b2c939e9250be947b3bd1ea3a43a78f946b6e142db94f650aab0cd46db910f369411
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.12.ebuild
new file mode 100644
index 000000000000..54904ffd4168
--- /dev/null
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.12.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 ~x86"
+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
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-09-12 9:44 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-09-12 9:44 UTC (permalink / raw
To: gentoo-commits
commit: 360ea9b4cb7dadc7066ce76f0cf2d7e6ebbdade0
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 12 09:44:07 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Sep 12 09:44:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360ea9b4
dev-util/bugbite-cli: remove old
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 -
dev-util/bugbite-cli/bugbite-cli-0.0.11.ebuild | 48 --------------------------
2 files changed, 49 deletions(-)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index f04c0cb5adab..162ef4c98893 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1,2 +1 @@
-DIST bugbite-cli-0.0.11.tar.xz 21068652 BLAKE2B a75137923c1578c8411a3b701564ad9883352478ba0467f7202ae3f668ae42d6890075b7a9b1f1d8ae1eb54a4280f3925f13d4b8656056e56c2a32f9f790ccd1 SHA512 b1df78427a3f5d1c44df95d077284fec5112385f31a480c6488fef20b53b43cbf1f80b1dcffd78b40f04d62364f8a8a7fd17f12ca0985d10ad3ee8f23ec3ae59
DIST bugbite-cli-0.0.12.tar.xz 21202148 BLAKE2B dd7d7b0927741d77b3a724273360348558fc2675e22e948f2f9e2b418db6a263986e051ebb700094610e98021af6264288ebcbe271c0efac88c8091f9cd0725e SHA512 2056450d13ccbdf484ef2f4e4ea663a4f10fbd4222574e630510a85a0d10b2c939e9250be947b3bd1ea3a43a78f946b6e142db94f650aab0cd46db910f369411
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.11.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.11.ebuild
deleted file mode 100644
index 54904ffd4168..000000000000
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.11.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 ~arm ~arm64 ~x86"
-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
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-08-26 8:51 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-08-26 8:51 UTC (permalink / raw
To: gentoo-commits
commit: 31ee82e06692815cb8fc34592269506116c2db2e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 26 08:50:58 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Aug 26 08:50:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ee82e0
dev-util/bugbite-cli: remove old
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 -
dev-util/bugbite-cli/bugbite-cli-0.0.10.ebuild | 48 --------------------------
2 files changed, 49 deletions(-)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index e4167b26875b..6e2786236cbc 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1,2 +1 @@
-DIST bugbite-cli-0.0.10.tar.xz 18167676 BLAKE2B 2e193e4bf6eb71bcf349e9ffb11e8816fc6f27b1ae2c174c52a4ccb1f5052760b2f47f3c03a1c7792f2f0d3b63fe7bae2710a112480f7b63e34f5f3aa1dd0e21 SHA512 b481ad5cd22737107084e4a22c866474ef4317572730ce739f4e7f08c2669e9d1bbd0571a0125e30a8a567780545c939d034a53f1589feffe97a08f0cf928c7d
DIST bugbite-cli-0.0.11.tar.xz 21068652 BLAKE2B a75137923c1578c8411a3b701564ad9883352478ba0467f7202ae3f668ae42d6890075b7a9b1f1d8ae1eb54a4280f3925f13d4b8656056e56c2a32f9f790ccd1 SHA512 b1df78427a3f5d1c44df95d077284fec5112385f31a480c6488fef20b53b43cbf1f80b1dcffd78b40f04d62364f8a8a7fd17f12ca0985d10ad3ee8f23ec3ae59
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.10.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.10.ebuild
deleted file mode 100644
index 54904ffd4168..000000000000
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.10.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 ~arm ~arm64 ~x86"
-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
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-08-26 8:51 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-08-26 8:51 UTC (permalink / raw
To: gentoo-commits
commit: cadea29708dd0eca4ae026f8a31f528aec40f51e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 26 08:50:55 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Aug 26 08:50:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cadea297
dev-util/bugbite-cli: add 0.0.11
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 +
dev-util/bugbite-cli/bugbite-cli-0.0.11.ebuild | 48 ++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index e1028ff4cacb..e4167b26875b 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1 +1,2 @@
DIST bugbite-cli-0.0.10.tar.xz 18167676 BLAKE2B 2e193e4bf6eb71bcf349e9ffb11e8816fc6f27b1ae2c174c52a4ccb1f5052760b2f47f3c03a1c7792f2f0d3b63fe7bae2710a112480f7b63e34f5f3aa1dd0e21 SHA512 b481ad5cd22737107084e4a22c866474ef4317572730ce739f4e7f08c2669e9d1bbd0571a0125e30a8a567780545c939d034a53f1589feffe97a08f0cf928c7d
+DIST bugbite-cli-0.0.11.tar.xz 21068652 BLAKE2B a75137923c1578c8411a3b701564ad9883352478ba0467f7202ae3f668ae42d6890075b7a9b1f1d8ae1eb54a4280f3925f13d4b8656056e56c2a32f9f790ccd1 SHA512 b1df78427a3f5d1c44df95d077284fec5112385f31a480c6488fef20b53b43cbf1f80b1dcffd78b40f04d62364f8a8a7fd17f12ca0985d10ad3ee8f23ec3ae59
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.11.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.11.ebuild
new file mode 100644
index 000000000000..54904ffd4168
--- /dev/null
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.11.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 ~x86"
+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
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-20 17:59 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-20 17:59 UTC (permalink / raw
To: gentoo-commits
commit: 8e0dde60626f96ccd4b4e7e4515edbf4413274ff
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 17:59:18 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 17:59:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e0dde60
dev-util/bugbite-cli: remove old
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 -
dev-util/bugbite-cli/bugbite-cli-0.0.9.ebuild | 48 ---------------------------
2 files changed, 49 deletions(-)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index 6dbcac91224c..e1028ff4cacb 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1,2 +1 @@
DIST bugbite-cli-0.0.10.tar.xz 18167676 BLAKE2B 2e193e4bf6eb71bcf349e9ffb11e8816fc6f27b1ae2c174c52a4ccb1f5052760b2f47f3c03a1c7792f2f0d3b63fe7bae2710a112480f7b63e34f5f3aa1dd0e21 SHA512 b481ad5cd22737107084e4a22c866474ef4317572730ce739f4e7f08c2669e9d1bbd0571a0125e30a8a567780545c939d034a53f1589feffe97a08f0cf928c7d
-DIST bugbite-cli-0.0.9.tar.xz 18610920 BLAKE2B 0c8a18a65da4535250e17f5f7456bc01c8b135f29f5edb58e2bf66fec22d0408634841d5bbb6d4c000235b994e2473564f8f646ae6e8b9161b9e371ea37dcc41 SHA512 fb2192aefdae469ea641bc2cb2678604b65c4ca88777b93811e3f753fe0e0807fbadb95ec8a0f40cf68ab495788064cdc121e501ae76f177ed04ba760505636e
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.9.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.9.ebuild
deleted file mode 100644
index 54904ffd4168..000000000000
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.9.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 ~arm ~arm64 ~x86"
-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
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-20 17:59 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-20 17:59 UTC (permalink / raw
To: gentoo-commits
commit: aecec2e643c714f450dd931c50f772242d8c7549
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 17:59:13 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 17:59:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aecec2e6
dev-util/bugbite-cli: version bump to 0.0.10
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 +
dev-util/bugbite-cli/bugbite-cli-0.0.10.ebuild | 48 ++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index b5d7bf97958e..6dbcac91224c 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1 +1,2 @@
+DIST bugbite-cli-0.0.10.tar.xz 18167676 BLAKE2B 2e193e4bf6eb71bcf349e9ffb11e8816fc6f27b1ae2c174c52a4ccb1f5052760b2f47f3c03a1c7792f2f0d3b63fe7bae2710a112480f7b63e34f5f3aa1dd0e21 SHA512 b481ad5cd22737107084e4a22c866474ef4317572730ce739f4e7f08c2669e9d1bbd0571a0125e30a8a567780545c939d034a53f1589feffe97a08f0cf928c7d
DIST bugbite-cli-0.0.9.tar.xz 18610920 BLAKE2B 0c8a18a65da4535250e17f5f7456bc01c8b135f29f5edb58e2bf66fec22d0408634841d5bbb6d4c000235b994e2473564f8f646ae6e8b9161b9e371ea37dcc41 SHA512 fb2192aefdae469ea641bc2cb2678604b65c4ca88777b93811e3f753fe0e0807fbadb95ec8a0f40cf68ab495788064cdc121e501ae76f177ed04ba760505636e
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.10.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.10.ebuild
new file mode 100644
index 000000000000..54904ffd4168
--- /dev/null
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.10.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 ~x86"
+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
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-13 5:39 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-13 5:39 UTC (permalink / raw
To: gentoo-commits
commit: 06d57cb863e4b2eb306dc62420713cc63ee444eb
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 05:38:59 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 05:38:59 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06d57cb8
dev-util/bugbite-cli: remove old
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 -
dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild | 48 ---------------------------
2 files changed, 49 deletions(-)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index b3087e4a8e52..b5d7bf97958e 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1,2 +1 @@
-DIST bugbite-cli-0.0.8.tar.xz 25695676 BLAKE2B 9d9d1f65219d5e8e18e0cf785d3c8b22e5b02d71066cbd131c74d980b90d5479425ea9a4427eb63931c871a83a7f38c9e6de9fc3f6fa0404907b523895635232 SHA512 f708a1bb4604a75dbadca13a64db1952194db4b409ba1a5fc0e76ced5ebd00f3a97f563855f030c72b1296c10955260183c1eddee18c5bb76429edc1e8006a90
DIST bugbite-cli-0.0.9.tar.xz 18610920 BLAKE2B 0c8a18a65da4535250e17f5f7456bc01c8b135f29f5edb58e2bf66fec22d0408634841d5bbb6d4c000235b994e2473564f8f646ae6e8b9161b9e371ea37dcc41 SHA512 fb2192aefdae469ea641bc2cb2678604b65c4ca88777b93811e3f753fe0e0807fbadb95ec8a0f40cf68ab495788064cdc121e501ae76f177ed04ba760505636e
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild
deleted file mode 100644
index 54904ffd4168..000000000000
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.8.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 ~arm ~arm64 ~x86"
-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
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-13 5:39 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-13 5:39 UTC (permalink / raw
To: gentoo-commits
commit: 48a6916e88a4b129c3d731ed45681d123a4b60d4
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 05:38:56 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 05:38:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48a6916e
dev-util/bugbite-cli: version bump to 0.0.9
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 +
dev-util/bugbite-cli/bugbite-cli-0.0.9.ebuild | 48 +++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index 8b68a60adf5d..b3087e4a8e52 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1 +1,2 @@
DIST bugbite-cli-0.0.8.tar.xz 25695676 BLAKE2B 9d9d1f65219d5e8e18e0cf785d3c8b22e5b02d71066cbd131c74d980b90d5479425ea9a4427eb63931c871a83a7f38c9e6de9fc3f6fa0404907b523895635232 SHA512 f708a1bb4604a75dbadca13a64db1952194db4b409ba1a5fc0e76ced5ebd00f3a97f563855f030c72b1296c10955260183c1eddee18c5bb76429edc1e8006a90
+DIST bugbite-cli-0.0.9.tar.xz 18610920 BLAKE2B 0c8a18a65da4535250e17f5f7456bc01c8b135f29f5edb58e2bf66fec22d0408634841d5bbb6d4c000235b994e2473564f8f646ae6e8b9161b9e371ea37dcc41 SHA512 fb2192aefdae469ea641bc2cb2678604b65c4ca88777b93811e3f753fe0e0807fbadb95ec8a0f40cf68ab495788064cdc121e501ae76f177ed04ba760505636e
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.9.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.9.ebuild
new file mode 100644
index 000000000000..54904ffd4168
--- /dev/null
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.9.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 ~x86"
+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
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-11 11:39 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-11 11:39 UTC (permalink / raw
To: gentoo-commits
commit: 54bf8714c683e2e88c3cb833f4c494640f029c19
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 11:38:50 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 11:38:50 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54bf8714
dev-util/bugbite-cli: mark ~x86
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild
index 46eb3f90c242..54904ffd4168 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild
@@ -10,7 +10,7 @@ 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"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="static test"
RESTRICT="!test? ( test ) "
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-10 9:59 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-10 9:59 UTC (permalink / raw
To: gentoo-commits
commit: e7a942c9bfc0d7ea9e8b280f897660a0058222ea
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 09:59:20 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 09:59:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a942c9
dev-util/bugbite-cli: remove old
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 -
dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild | 48 ------------------------
dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild | 35 -----------------
3 files changed, 84 deletions(-)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index 3cd01f65d512..8b68a60adf5d 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1,2 +1 @@
-DIST bugbite-cli-0.0.7.tar.xz 28365584 BLAKE2B e1f38972e6ca43ae24761baf4c5c4675a171663c7347783134962d090bb12860fab84a3730bf894e86235f26f625a765c323fc659b90b729131d780bb6771856 SHA512 6330e1dd86ab1958681e14104da2e854fa3223c585fe14b913fb3777318a8b367579aa483c158a03fd89811ad4a28624d9629e8ea8682cffa5d2adb769a53d2f
DIST bugbite-cli-0.0.8.tar.xz 25695676 BLAKE2B 9d9d1f65219d5e8e18e0cf785d3c8b22e5b02d71066cbd131c74d980b90d5479425ea9a4427eb63931c871a83a7f38c9e6de9fc3f6fa0404907b523895635232 SHA512 f708a1bb4604a75dbadca13a64db1952194db4b409ba1a5fc0e76ced5ebd00f3a97f563855f030c72b1296c10955260183c1eddee18c5bb76429edc1e8006a90
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 035c44ec12d5..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 ~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 --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
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-10 9:59 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-10 9:59 UTC (permalink / raw
To: gentoo-commits
commit: cf22e6935a96198b61842027002d4ecdc57f59c0
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 09:58:57 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 09:58:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf22e693
dev-util/bugbite-cli: version bump to 0.0.8
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 +
dev-util/bugbite-cli/bugbite-cli-0.0.8.ebuild | 48 +++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
index 21687a4d514a..3cd01f65d512 100644
--- a/dev-util/bugbite-cli/Manifest
+++ b/dev-util/bugbite-cli/Manifest
@@ -1 +1,2 @@
DIST bugbite-cli-0.0.7.tar.xz 28365584 BLAKE2B e1f38972e6ca43ae24761baf4c5c4675a171663c7347783134962d090bb12860fab84a3730bf894e86235f26f625a765c323fc659b90b729131d780bb6771856 SHA512 6330e1dd86ab1958681e14104da2e854fa3223c585fe14b913fb3777318a8b367579aa483c158a03fd89811ad4a28624d9629e8ea8682cffa5d2adb769a53d2f
+DIST bugbite-cli-0.0.8.tar.xz 25695676 BLAKE2B 9d9d1f65219d5e8e18e0cf785d3c8b22e5b02d71066cbd131c74d980b90d5479425ea9a4427eb63931c871a83a7f38c9e6de9fc3f6fa0404907b523895635232 SHA512 f708a1bb4604a75dbadca13a64db1952194db4b409ba1a5fc0e76ced5ebd00f3a97f563855f030c72b1296c10955260183c1eddee18c5bb76429edc1e8006a90
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..035c44ec12d5
--- /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 --all-features --tests ${static_stuff}
+}
+
+src_install() {
+ cargo_src_install
+
+ doman man/*
+ dofishcomp shell/bite.fish
+ dozshcomp shell/_bite
+ newbashcomp shell/bite.bash bite
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-04-10 9:17 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-04-10 9:17 UTC (permalink / raw
To: gentoo-commits
commit: 402be8b5cbd2378370e70fbee8393d2665f8324c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 09:17:11 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 09:17:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402be8b5
dev-util/bugbite-cli: mark ~arm
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
index 6a39a6bf22b6..035c44ec12d5 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild
@@ -10,7 +10,7 @@ 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"
+KEYWORDS="~amd64 ~arm ~arm64"
IUSE="static test"
RESTRICT="!test? ( test ) "
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-03-29 10:33 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-03-29 10:33 UTC (permalink / raw
To: gentoo-commits
commit: 84a1bb503a07ad0349f727923e248f0986e467f3
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 29 10:33:27 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Mar 29 10:33:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84a1bb50
dev-util/bugbite-cli: mark ~arm64
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
index 8389e8b00161..6a39a6bf22b6 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild
@@ -10,7 +10,7 @@ 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"
+KEYWORDS="~amd64 ~arm64"
IUSE="static test"
RESTRICT="!test? ( test ) "
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-03-28 14:24 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-03-28 14:24 UTC (permalink / raw
To: gentoo-commits
commit: d2a235a030c96ad9d3fb967b91c9c102884430eb
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 28 14:24:03 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Mar 28 14:24:03 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a235a0
dev-util/bugbite-cli: add a revision to hack around a static build
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.ebuild | 48 ++++++++++++++++++++++++
1 file changed, 48 insertions(+)
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
new file mode 100644
index 000000000000..8389e8b00161
--- /dev/null
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.7-r1.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"
+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
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-03-27 11:35 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-03-27 11:35 UTC (permalink / raw
To: gentoo-commits
commit: dade4c316607ac87f0ee7182f99aa8d787a36b82
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 27 11:34:53 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 11:34:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dade4c31
dev-util/bugbite-cli: fix description
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild
index 099ef2d886e3..897557d9ca73 100644
--- a/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild
@@ -5,7 +5,7 @@ EAPI=8
inherit cargo edo shell-completion
-DESCRIPTION="library for bug, issue, and ticket mangling"
+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"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/
@ 2024-03-27 11:29 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2024-03-27 11:29 UTC (permalink / raw
To: gentoo-commits
commit: 73965035a9d6328aeef47ca9dc0d289b88bdf91b
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 27 11:29:04 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 11:29:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73965035
dev-util/bugbite-cli: new package, added version 0.0.7
Thanks-to: Mart Raudsepp <leio <AT> gentoo.org>
Thanks-to: Tim Harder <radhermit <AT> gentoo.org>
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/bugbite-cli/Manifest | 1 +
dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild | 35 +++++++++++++++++++++++++++
dev-util/bugbite-cli/metadata.xml | 16 ++++++++++++
3 files changed, 52 insertions(+)
diff --git a/dev-util/bugbite-cli/Manifest b/dev-util/bugbite-cli/Manifest
new file mode 100644
index 000000000000..21687a4d514a
--- /dev/null
+++ b/dev-util/bugbite-cli/Manifest
@@ -0,0 +1 @@
+DIST bugbite-cli-0.0.7.tar.xz 28365584 BLAKE2B e1f38972e6ca43ae24761baf4c5c4675a171663c7347783134962d090bb12860fab84a3730bf894e86235f26f625a765c323fc659b90b729131d780bb6771856 SHA512 6330e1dd86ab1958681e14104da2e854fa3223c585fe14b913fb3777318a8b367579aa483c158a03fd89811ad4a28624d9629e8ea8682cffa5d2adb769a53d2f
diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild
new file mode 100644
index 000000000000..099ef2d886e3
--- /dev/null
+++ b/dev-util/bugbite-cli/bugbite-cli-0.0.7.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cargo edo shell-completion
+
+DESCRIPTION="library 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/metadata.xml b/dev-util/bugbite-cli/metadata.xml
new file mode 100644
index 000000000000..e71a8c41c9c8
--- /dev/null
+++ b/dev-util/bugbite-cli/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>ago@gentoo.org</email>
+ <name>Agostino Sarubbo</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>radhermit@gentoo.org</email>
+ <name>Tim Harder</name>
+ <description>Upstream, please CC on bugs</description>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">radhermit/bugbite</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 21+ messages in thread
end of thread, other threads:[~2024-11-09 13:48 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-10 10:25 [gentoo-commits] repo/gentoo:master commit in: dev-util/bugbite-cli/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2024-11-09 13:48 Sam James
2024-11-09 13:48 Sam James
2024-11-08 11:36 Agostino Sarubbo
2024-09-12 14:48 Agostino Sarubbo
2024-09-12 9:44 Agostino Sarubbo
2024-09-12 9:44 Agostino Sarubbo
2024-08-26 8:51 Agostino Sarubbo
2024-08-26 8:51 Agostino Sarubbo
2024-04-20 17:59 Agostino Sarubbo
2024-04-20 17:59 Agostino Sarubbo
2024-04-13 5:39 Agostino Sarubbo
2024-04-13 5:39 Agostino Sarubbo
2024-04-11 11:39 Agostino Sarubbo
2024-04-10 9:59 Agostino Sarubbo
2024-04-10 9:59 Agostino Sarubbo
2024-04-10 9:17 Agostino Sarubbo
2024-03-29 10:33 Agostino Sarubbo
2024-03-28 14:24 Agostino Sarubbo
2024-03-27 11:35 Agostino Sarubbo
2024-03-27 11:29 Agostino Sarubbo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox