Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages?
@ 2023-02-04  2:31 classabbyamp
  2023-02-04  2:34 ` ahesford
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: classabbyamp @ 2023-02-04  2:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 281 bytes --]

New issue by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/issues/42069

Description:
@void-linux/pkg-committers 

Should setting `repository=bootstrap` automatically disable debug and multilib package generation?

for reference: #39868

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

* Re: [RFC] auto-disable debug and multilib for bootstrap packages?
  2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
@ 2023-02-04  2:34 ` ahesford
  2023-02-04 12:14 ` Duncaen
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: ahesford @ 2023-02-04  2:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 149 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/issues/42069#issuecomment-1416635923

Comment:
Yes.

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

* Re: [RFC] auto-disable debug and multilib for bootstrap packages?
  2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
  2023-02-04  2:34 ` ahesford
@ 2023-02-04 12:14 ` Duncaen
  2023-02-04 13:07 ` ahesford
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Duncaen @ 2023-02-04 12:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 148 bytes --]

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/issues/42069#issuecomment-1416736937

Comment:
Why?

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

* Re: [RFC] auto-disable debug and multilib for bootstrap packages?
  2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
  2023-02-04  2:34 ` ahesford
  2023-02-04 12:14 ` Duncaen
@ 2023-02-04 13:07 ` ahesford
  2023-02-04 13:22 ` Duncaen
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: ahesford @ 2023-02-04 13:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 718 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/issues/42069#issuecomment-1416747213

Comment:
We have no mechanism for actually tying debug/multilib packages to their parents and tend to leave behind stale debugs when we change the package tree even after manually removing the parents. If the bootstrap debug packages end up in the regular debug repo, it will lead to public clutter for packages that are obscured from general visibility anyway. If they end up in a `bootstrap/debug` repo, it's just another directory with a state that will deviate from the master. I can't imagine there's any real utility in the packages, so it's probably better to just skip them.

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

* Re: [RFC] auto-disable debug and multilib for bootstrap packages?
  2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
                   ` (2 preceding siblings ...)
  2023-02-04 13:07 ` ahesford
@ 2023-02-04 13:22 ` Duncaen
  2023-05-06  1:49 ` github-actions
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Duncaen @ 2023-02-04 13:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1592 bytes --]

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/issues/42069#issuecomment-1416749732

Comment:
> We have no mechanism for actually tying debug/multilib packages to their parents and tend to leave behind stale debugs when we change the package tree even after manually removing the parents.

We have `source-revisions`:
```
$ xbps-query --regex -Rp source-revisions -s "^zlib:"
zlib-1.2.13_1: zlib:5f1d95b23c (https://repo-fastly.voidlinux.org/current)
zlib-devel-1.2.13_1: zlib:5f1d95b23c (https://repo-fastly.voidlinux.org/current)
zlib-dbg-1.2.13_1: zlib:5f1d95b23c (https://repo-fastly.voidlinux.org/current/debug)
zlib-32bit-1.2.13_1: zlib:91837caec7 (https://repo-fastly.voidlinux.org/current/multilib)
zlib-devel-32bit-1.2.13_1: zlib:91837caec7 (https://repo-fastly.voidlinux.org/current/multilib)
```

We could also use that as a better way to delete packages in the future, instead of having file names we just have arch+source-revisions combos that we put in a script that looks up the packages and deletes them.

> If they end up in a bootstrap/debug repo, it's just another directory with a state that will deviate from the master. I can't imagine there's any real utility in the packages, so it's probably better to just skip them.

They should end up there IMHO, adding magic to disable debug based on repository just because there might be no apparent utility doesn't seem like a good idea. Seems like a bug that is only using the templates `repository` for the the package itself and multilib, but not for debug.

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

* Re: [RFC] auto-disable debug and multilib for bootstrap packages?
  2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
                   ` (3 preceding siblings ...)
  2023-02-04 13:22 ` Duncaen
@ 2023-05-06  1:49 ` github-actions
  2023-08-10  1:52 ` github-actions
  2023-08-25  1:44 ` [ISSUE] [CLOSED] " github-actions
  6 siblings, 0 replies; 8+ messages in thread
From: github-actions @ 2023-05-06  1:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 293 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/issues/42069#issuecomment-1536974078

Comment:
Issues become stale 90 days after last activity and are closed 14 days after that.  If this issue is still relevant bump it or assign it.

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

* Re: [RFC] auto-disable debug and multilib for bootstrap packages?
  2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
                   ` (4 preceding siblings ...)
  2023-05-06  1:49 ` github-actions
@ 2023-08-10  1:52 ` github-actions
  2023-08-25  1:44 ` [ISSUE] [CLOSED] " github-actions
  6 siblings, 0 replies; 8+ messages in thread
From: github-actions @ 2023-08-10  1:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 293 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/issues/42069#issuecomment-1672421687

Comment:
Issues become stale 90 days after last activity and are closed 14 days after that.  If this issue is still relevant bump it or assign it.

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

* Re: [ISSUE] [CLOSED] [RFC] auto-disable debug and multilib for bootstrap packages?
  2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
                   ` (5 preceding siblings ...)
  2023-08-10  1:52 ` github-actions
@ 2023-08-25  1:44 ` github-actions
  6 siblings, 0 replies; 8+ messages in thread
From: github-actions @ 2023-08-25  1:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 284 bytes --]

Closed issue by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/issues/42069

Description:
@void-linux/pkg-committers 

Should setting `repository=bootstrap` automatically disable debug and multilib package generation?

for reference: #39868

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

end of thread, other threads:[~2023-08-25  1:44 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-04  2:31 [ISSUE] [RFC] auto-disable debug and multilib for bootstrap packages? classabbyamp
2023-02-04  2:34 ` ahesford
2023-02-04 12:14 ` Duncaen
2023-02-04 13:07 ` ahesford
2023-02-04 13:22 ` Duncaen
2023-05-06  1:49 ` github-actions
2023-08-10  1:52 ` github-actions
2023-08-25  1:44 ` [ISSUE] [CLOSED] " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).