GNU bug report logs -
#71653
[PATCH] import/github: Honor upstream-name property.
Previous Next
Reported by: Dariqq <dariqq <at> posteo.net>
Date: Wed, 19 Jun 2024 16:28:02 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 71653 in the body.
You can then email your comments to 71653 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#71653
; Package
guix-patches
.
(Wed, 19 Jun 2024 16:28:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Dariqq <dariqq <at> posteo.net>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 19 Jun 2024 16:28:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* guix/import/github.scm (import-release): Use 'upstream-name if available.
Change-Id: I9a4999a01156ce02584270837ceab70996b49106
---
guix/import/github.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix/import/github.scm b/guix/import/github.scm
index c5556d78ee..164fcde458 100644
--- a/guix/import/github.scm
+++ b/guix/import/github.scm
@@ -328,8 +328,9 @@ (define* (import-release pkg #:key (version #f))
(let* ((original-uri (origin-uri (package-source pkg)))
(source-uri (github-uri original-uri))
(name (package-name pkg))
+ (upstream-name (assoc-ref (package-properties pkg) 'upstream-name))
(newest-version version-tag
- (latest-released-version source-uri name
+ (latest-released-version source-uri (or upstream-name name)
#:version version)))
(if newest-version
(upstream-source
base-commit: c551e406a75273583ae3fef92f32468f905cc07f
--
2.45.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#71653
; Package
guix-patches
.
(Sun, 23 Jun 2024 06:23:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 71653 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Dariqq <dariqq <at> posteo.net> writes:
> * guix/import/github.scm (import-release): Use 'upstream-name if available.
>
> Change-Id: I9a4999a01156ce02584270837ceab70996b49106
> ---
> guix/import/github.scm | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/guix/import/github.scm b/guix/import/github.scm
> index c5556d78ee..164fcde458 100644
> --- a/guix/import/github.scm
> +++ b/guix/import/github.scm
> @@ -328,8 +328,9 @@ (define* (import-release pkg #:key (version #f))
> (let* ((original-uri (origin-uri (package-source pkg)))
> (source-uri (github-uri original-uri))
> (name (package-name pkg))
^------------ I think maybe just use "package-upstream-name" on this?
> + (upstream-name (assoc-ref (package-properties pkg) 'upstream-name))
> (newest-version version-tag
> - (latest-released-version source-uri name
> + (latest-released-version source-uri (or upstream-name name)
> #:version version)))
> (if newest-version
> (upstream-source
>
> base-commit: c551e406a75273583ae3fef92f32468f905cc07f
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#71653
; Package
guix-patches
.
(Sun, 23 Jun 2024 08:04:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 71653 <at> debbugs.gnu.org (full text, mbox):
* guix/import/github.scm (import-release): Use package-upstream-name instead
of package-name.
Change-Id: I9a4999a01156ce02584270837ceab70996b49106
---
guix/import/github.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/import/github.scm b/guix/import/github.scm
index c5556d78ee..7be29ca151 100644
--- a/guix/import/github.scm
+++ b/guix/import/github.scm
@@ -327,7 +327,7 @@ (define* (import-release pkg #:key (version #f))
(let* ((original-uri (origin-uri (package-source pkg)))
(source-uri (github-uri original-uri))
- (name (package-name pkg))
+ (name (package-upstream-name pkg))
(newest-version version-tag
(latest-released-version source-uri name
#:version version)))
base-commit: dd5ef2cbddd76cf048a9b514cdcea6d22411a2cb
--
2.45.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#71653
; Package
guix-patches
.
(Sun, 23 Jun 2024 08:06:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 71653 <at> debbugs.gnu.org (full text, mbox):
On 23.06.24 08:21, Zheng Junjie wrote:
> Dariqq <dariqq <at> posteo.net> writes:
>
>> * guix/import/github.scm (import-release): Use 'upstream-name if available.
>>
>> Change-Id: I9a4999a01156ce02584270837ceab70996b49106
>> ---
>> guix/import/github.scm | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/guix/import/github.scm b/guix/import/github.scm
>> index c5556d78ee..164fcde458 100644
>> --- a/guix/import/github.scm
>> +++ b/guix/import/github.scm
>> @@ -328,8 +328,9 @@ (define* (import-release pkg #:key (version #f))
>> (let* ((original-uri (origin-uri (package-source pkg)))
>> (source-uri (github-uri original-uri))
>> (name (package-name pkg))
> ^------------ I think maybe just use "package-upstream-name" on this?
>
Thanks, i think this is better. Have sent a v2 now. THis will also
change the package field of the resulting upstream-source to the
upstream name, but this matches what other updaters do (i have checked
with gnu-maintenance)
>> + (upstream-name (assoc-ref (package-properties pkg) 'upstream-name))
>> (newest-version version-tag
>> - (latest-released-version source-uri name
>> + (latest-released-version source-uri (or upstream-name name)
>> #:version version)))
>> (if newest-version
>> (upstream-source
>>
>> base-commit: c551e406a75273583ae3fef92f32468f905cc07f
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Sat, 06 Jul 2024 10:09:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Dariqq <dariqq <at> posteo.net>
:
bug acknowledged by developer.
(Sat, 06 Jul 2024 10:09:01 GMT)
Full text and
rfc822 format available.
Message #19 received at 71653-done <at> debbugs.gnu.org (full text, mbox):
Hello,
> On 23.06.24 08:21, Zheng Junjie wrote:
> > Dariqq <dariqq <at> posteo.net> writes:
> >
> >> * guix/import/github.scm (import-release): Use 'upstream-name if
> >available.
Applied. Thank you!
Regards,
--
Nicolas Goaziou
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 03 Aug 2024 11:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 140 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.