public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/silver/
@ 2021-09-20 21:41 Leonardo Hernandez
  0 siblings, 0 replies; 3+ messages in thread
From: Leonardo Hernandez @ 2021-09-20 21:41 UTC (permalink / raw
  To: gentoo-commits

commit:     6d34c32b2315d3d4cc608d1891bcdbabf9f00ff1
Author:     Leonardo Hernandez Hernandez <leohdz172 <AT> outlook <DOT> com>
AuthorDate: Mon Sep 20 21:28:18 2021 +0000
Commit:     Leonardo Hernandez <leohdz172 <AT> outlook <DOT> com>
CommitDate: Mon Sep 20 21:35:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6d34c32b

app-shells/silver: fix QA not respect LDFLAGS

add `/usr/bin/silver` to QA_FLAGS_IGNORED
filter '-flto*' instead of strip-flags

Closes: https://bugs.gentoo.org/814065
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Leonardo Hernandez Hernandez <leohdz172 <AT> outlook.com>

 app-shells/silver/silver-2.0.0.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-shells/silver/silver-2.0.0.ebuild b/app-shells/silver/silver-2.0.0.ebuild
index 7acc6b725..61280aaa0 100644
--- a/app-shells/silver/silver-2.0.0.ebuild
+++ b/app-shells/silver/silver-2.0.0.ebuild
@@ -132,14 +132,16 @@ DEPEND="
 
 DOCS="readme.md"
 
+QA_FLAGS_IGNORED="/usr/bin/silver"
+
 PATCHES=( "$FILESDIR/add-gentoo-support.patch" )
 
 src_configure() {
 	export LIBGIT2_SYS_USE_PKG_CONFIG=1
 	export PKG_CONFIG_ALLOW_CROSS=1
 
-	# Some obscure LDFLAGS cause error during linking
-	strip-flags
+	# Breaks compilation
+	filter-flags '-flto*'
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/silver/
@ 2023-01-12 20:58 Leonardo Hernandez
  0 siblings, 0 replies; 3+ messages in thread
From: Leonardo Hernandez @ 2023-01-12 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     dd000073d28451e809643cffaa1181d15edbd0af
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Thu Jan 12 19:58:29 2023 +0000
Commit:     Leonardo Hernandez <leohdz172 <AT> proton <DOT> me>
CommitDate: Thu Jan 12 20:06:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd000073

app-shells/silver: add github upstream metadata

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 app-shells/silver/metadata.xml | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/app-shells/silver/metadata.xml b/app-shells/silver/metadata.xml
index 6045bb5ef..acca7129d 100644
--- a/app-shells/silver/metadata.xml
+++ b/app-shells/silver/metadata.xml
@@ -1,16 +1,17 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<name>Leonardo Hernández Hernández</name>
-		<email>leohdz172@proton.me</email>
-	</maintainer>
-	<longdescription lang="en">
-		A cross-shell customizable powerline-like prompt heavily inspired by Agnoster.
-		The faster rust port of bronze.
-	</longdescription>
-	<upstream>
-		<bugs-to>https://github.com/reujab/silver/issues</bugs-to>
-		<doc>https://github.com/reujab/silver/blob/master/readme.md</doc>
-	</upstream>
+  <maintainer type="person">
+    <name>Leonardo Hernández Hernández</name>
+    <email>leohdz172@proton.me</email>
+  </maintainer>
+  <longdescription lang="en">
+    A cross-shell customizable powerline-like prompt heavily inspired by Agnoster.
+    The faster rust port of bronze.
+  </longdescription>
+  <upstream>
+    <bugs-to>https://github.com/reujab/silver/issues</bugs-to>
+    <doc>https://github.com/reujab/silver/blob/master/readme.md</doc>
+    <remote-id type="github">reujab/silver</remote-id>
+  </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/silver/
@ 2023-07-26  6:05 Leonardo Hernandez
  0 siblings, 0 replies; 3+ messages in thread
From: Leonardo Hernandez @ 2023-07-26  6:05 UTC (permalink / raw
  To: gentoo-commits

commit:     5369b08315270beeeed000f8732bb7eb20cad746
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Wed Jul 26 05:54:36 2023 +0000
Commit:     Leonardo Hernandez <leohdz172 <AT> proton <DOT> me>
CommitDate: Wed Jul 26 06:05:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5369b083

app-shells/silver: modernize cargo.eclass usage

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 app-shells/silver/silver-2.0.0-r1.ebuild | 223 +++++++++++++++----------------
 1 file changed, 111 insertions(+), 112 deletions(-)

diff --git a/app-shells/silver/silver-2.0.0-r1.ebuild b/app-shells/silver/silver-2.0.0-r1.ebuild
index b2149218f..c353647c8 100644
--- a/app-shells/silver/silver-2.0.0-r1.ebuild
+++ b/app-shells/silver/silver-2.0.0-r1.ebuild
@@ -1,126 +1,126 @@
 # Copyright 2021-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Autogenerated by pycargoebuild 0.6.3
+# Autogenerated by pycargoebuild 0.10
 
 EAPI=8
 
 CRATES="
-	ahash-0.3.8
-	aho-corasick-0.7.13
-	anyhow-1.0.32
-	arrayref-0.3.6
-	arrayvec-0.5.1
-	atty-0.2.14
-	autocfg-1.0.0
-	base64-0.11.0
-	bitflags-1.2.1
-	blake2b_simd-0.5.10
-	cc-1.0.79
-	cfg-if-0.1.10
-	chrono-0.4.13
-	clap-3.0.0-beta.2
-	clap_derive-3.0.0-beta.2
-	confy-0.4.0
-	constant_time_eq-0.1.5
-	crossbeam-deque-0.7.3
-	crossbeam-epoch-0.8.2
-	crossbeam-queue-0.2.3
-	crossbeam-utils-0.7.2
-	directories-2.0.2
-	dirs-2.0.2
-	dirs-sys-0.3.5
-	dlv-list-0.2.2
-	doc-comment-0.3.3
-	either-1.5.3
-	getrandom-0.1.14
-	git2-0.13.8
-	hashbrown-0.7.2
-	hashbrown-0.9.1
-	heck-0.3.1
-	hermit-abi-0.1.15
-	hostname-0.3.1
-	humantime-2.0.1
-	humantime-serde-1.0.0
-	idna-0.2.0
-	indexmap-1.6.0
-	jobserver-0.1.21
-	lazy_static-1.4.0
-	libc-0.2.74
-	libgit2-sys-0.12.9+1.0.1
-	libssh2-sys-0.2.18
-	libz-sys-1.0.25
-	log-0.4.11
-	match_cfg-0.1.0
-	matches-0.1.8
-	maybe-uninit-2.0.0
-	memchr-2.3.3
-	memoffset-0.5.5
-	ntapi-0.3.4
-	num-integer-0.1.43
-	num-traits-0.2.12
-	num_cpus-1.13.0
-	once_cell-1.4.0
-	openssl-probe-0.1.2
-	openssl-sys-0.9.87
-	ordered-multimap-0.2.4
-	os_str_bytes-2.4.0
-	percent-encoding-2.1.0
-	pkg-config-0.3.18
-	ppv-lite86-0.2.8
-	proc-macro-error-1.0.4
-	proc-macro-error-attr-1.0.4
-	proc-macro2-1.0.19
-	quote-1.0.7
-	rand-0.7.3
-	rand_chacha-0.2.2
-	rand_core-0.5.1
-	rand_hc-0.2.0
-	rayon-1.3.1
-	rayon-core-1.7.1
-	redox_syscall-0.1.57
-	redox_users-0.3.4
-	regex-1.3.9
-	regex-syntax-0.6.18
-	rust-argon2-0.7.0
-	rust-ini-0.15.3
-	scopeguard-1.1.0
-	serde-1.0.114
-	serde_derive-1.0.114
-	shellexpand-2.0.0
-	strsim-0.10.0
-	syn-1.0.37
-	sysinfo-0.15.0
-	termcolor-1.1.2
-	textwrap-0.12.1
-	thread_local-1.0.1
-	time-0.1.43
-	tinyvec-0.3.3
-	toml-0.5.6
-	unicode-bidi-0.3.4
-	unicode-normalization-0.1.13
-	unicode-segmentation-1.7.0
-	unicode-width-0.1.8
-	unicode-xid-0.2.1
-	url-2.1.1
-	users-0.10.0
-	vcpkg-0.2.10
-	vec_map-0.8.2
-	version_check-0.9.2
-	wasi-0.9.0+wasi-snapshot-preview1
-	winapi-0.3.9
-	winapi-i686-pc-windows-gnu-0.4.0
-	winapi-util-0.1.5
-	winapi-x86_64-pc-windows-gnu-0.4.0
+	ahash@0.3.8
+	aho-corasick@0.7.13
+	anyhow@1.0.32
+	arrayref@0.3.6
+	arrayvec@0.5.1
+	atty@0.2.14
+	autocfg@1.0.0
+	base64@0.11.0
+	bitflags@1.2.1
+	blake2b_simd@0.5.10
+	cc@1.0.79
+	cfg-if@0.1.10
+	chrono@0.4.13
+	clap@3.0.0-beta.2
+	clap_derive@3.0.0-beta.2
+	confy@0.4.0
+	constant_time_eq@0.1.5
+	crossbeam-deque@0.7.3
+	crossbeam-epoch@0.8.2
+	crossbeam-queue@0.2.3
+	crossbeam-utils@0.7.2
+	directories@2.0.2
+	dirs-sys@0.3.5
+	dirs@2.0.2
+	dlv-list@0.2.2
+	doc-comment@0.3.3
+	either@1.5.3
+	getrandom@0.1.14
+	git2@0.13.8
+	hashbrown@0.7.2
+	hashbrown@0.9.1
+	heck@0.3.1
+	hermit-abi@0.1.15
+	hostname@0.3.1
+	humantime-serde@1.0.0
+	humantime@2.0.1
+	idna@0.2.0
+	indexmap@1.6.0
+	jobserver@0.1.21
+	lazy_static@1.4.0
+	libc@0.2.74
+	libgit2-sys@0.12.9+1.0.1
+	libssh2-sys@0.2.18
+	libz-sys@1.0.25
+	log@0.4.11
+	match_cfg@0.1.0
+	matches@0.1.8
+	maybe-uninit@2.0.0
+	memchr@2.3.3
+	memoffset@0.5.5
+	ntapi@0.3.4
+	num-integer@0.1.43
+	num-traits@0.2.12
+	num_cpus@1.13.0
+	once_cell@1.4.0
+	openssl-probe@0.1.2
+	openssl-sys@0.9.87
+	ordered-multimap@0.2.4
+	os_str_bytes@2.4.0
+	percent-encoding@2.1.0
+	pkg-config@0.3.18
+	ppv-lite86@0.2.8
+	proc-macro-error-attr@1.0.4
+	proc-macro-error@1.0.4
+	proc-macro2@1.0.19
+	quote@1.0.7
+	rand@0.7.3
+	rand_chacha@0.2.2
+	rand_core@0.5.1
+	rand_hc@0.2.0
+	rayon-core@1.7.1
+	rayon@1.3.1
+	redox_syscall@0.1.57
+	redox_users@0.3.4
+	regex-syntax@0.6.18
+	regex@1.3.9
+	rust-argon2@0.7.0
+	rust-ini@0.15.3
+	scopeguard@1.1.0
+	serde@1.0.114
+	serde_derive@1.0.114
+	shellexpand@2.0.0
+	strsim@0.10.0
+	syn@1.0.37
+	sysinfo@0.15.0
+	termcolor@1.1.2
+	textwrap@0.12.1
+	thread_local@1.0.1
+	time@0.1.43
+	tinyvec@0.3.3
+	toml@0.5.6
+	unicode-bidi@0.3.4
+	unicode-normalization@0.1.13
+	unicode-segmentation@1.7.0
+	unicode-width@0.1.8
+	unicode-xid@0.2.1
+	url@2.1.1
+	users@0.10.0
+	vcpkg@0.2.10
+	vec_map@0.8.2
+	version_check@0.9.2
+	wasi@0.9.0+wasi-snapshot-preview1
+	winapi-i686-pc-windows-gnu@0.4.0
+	winapi-util@0.1.5
+	winapi-x86_64-pc-windows-gnu@0.4.0
+	winapi@0.3.9
 "
 
-inherit cargo flag-o-matic toolchain-funcs
+inherit cargo
 
 DESCRIPTION="A cross-shell customizable powerline-like prompt with icons"
 HOMEPAGE="https://github.com/reujab/silver"
 SRC_URI="
 	https://github.com/reujab/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
-	$(cargo_crate_uris)
+	${CARGO_CRATE_URIS}
 "
 
 LICENSE="MIT"
@@ -138,7 +138,7 @@ DEPEND="${RDEPEND}"
 
 DOCS="readme.md"
 
-QA_FLAGS_IGNORED="/usr/bin/silver"
+QA_FLAGS_IGNORED="usr/bin/silver"
 
 PATCHES=(
 	"${FILESDIR}"/"${PV}"-update-openssl-sys.patch
@@ -150,8 +150,7 @@ src_configure() {
 	export LIBGIT2_SYS_USE_PKG_CONFIG=1
 	export PKG_CONFIG_ALLOW_CROSS=1
 
-	# Breaks compilation
-	tc-is-clang || filter-lto
+	cargo_src_configure
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-07-26  6:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-20 21:41 [gentoo-commits] repo/proj/guru:dev commit in: app-shells/silver/ Leonardo Hernandez
  -- strict thread matches above, loose matches on Subject: below --
2023-01-12 20:58 Leonardo Hernandez
2023-07-26  6:05 Leonardo Hernandez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox