All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/1] debian: Resend .gitcensus change
@ 2021-12-07 12:21 Bastian Germann
  2021-12-07 12:21 ` [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743) Bastian Germann
  0 siblings, 1 reply; 6+ messages in thread
From: Bastian Germann @ 2021-12-07 12:21 UTC (permalink / raw)
  To: linux-xfs; +Cc: Bastian Germann

This is a resend with the Reviewed-by tag collected.
I guess this was not integrated because the first version had one
more patchcthat ended being replaced by a different patch.

Changelog:
 v2: Drop 2nd patch that was reworked by Darrick.

Bastian Germann (1):
  debian: Generate .gitcensus instead of .census (Closes: #999743)

 debian/rules | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

-- 
2.34.1



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

* [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743)
  2021-12-07 12:21 [PATCH v2 0/1] debian: Resend .gitcensus change Bastian Germann
@ 2021-12-07 12:21 ` Bastian Germann
  2022-02-10 12:35   ` Bastian Germann
  2022-04-17 10:00   ` Bastian Germann
  0 siblings, 2 replies; 6+ messages in thread
From: Bastian Germann @ 2021-12-07 12:21 UTC (permalink / raw)
  To: linux-xfs; +Cc: Bastian Germann, Darrick J . Wong

Fix the Debian build outside a git tree (e.g., Debian archive builds) by
creating an empty .gitcensus instead of .census file on config.

Signed-off-by: Bastian Germann <bage@debian.org>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
---
 debian/rules | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/rules b/debian/rules
index 615289b4..6d5b82a8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -43,15 +43,15 @@ built: dibuild config
 	$(MAKE) $(PMAKEFLAGS) default
 	touch built
 
-config: .census
-.census:
+config: .gitcensus
+.gitcensus:
 	@echo "== dpkg-buildpackage: configure" 1>&2
 	$(checkdir)
 	AUTOHEADER=/bin/true dh_autoreconf
 	dh_update_autotools_config
 	$(options) $(MAKE) $(PMAKEFLAGS) include/platform_defs.h
 	cp -f include/install-sh .
-	touch .census
+	touch .gitcensus
 
 dibuild:
 	$(checkdir)
@@ -72,7 +72,7 @@ dibuild:
 clean:
 	@echo "== dpkg-buildpackage: clean" 1>&2
 	$(checkdir)
-	-rm -f built .census mkfs/mkfs.xfs-$(bootpkg)
+	-rm -f built .gitcensus mkfs/mkfs.xfs-$(bootpkg)
 	$(MAKE) distclean
 	-rm -rf $(dirme) $(dirdev) $(dirdi)
 	-rm -f debian/*substvars debian/files* debian/*.debhelper
-- 
2.34.1



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

* Re: [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743)
  2021-12-07 12:21 ` [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743) Bastian Germann
@ 2022-02-10 12:35   ` Bastian Germann
  2022-04-17 10:00   ` Bastian Germann
  1 sibling, 0 replies; 6+ messages in thread
From: Bastian Germann @ 2022-02-10 12:35 UTC (permalink / raw)
  To: linux-xfs; +Cc: Darrick J . Wong

Hey,

I want to remind you of this patch before releasing xfsprogs 5.15.0.

Thanks,
Bastian

Am 07.12.21 um 13:21 schrieb Bastian Germann:
> Fix the Debian build outside a git tree (e.g., Debian archive builds) by
> creating an empty .gitcensus instead of .census file on config.
> 
> Signed-off-by: Bastian Germann <bage@debian.org>
> Reviewed-by: Darrick J. Wong <djwong@kernel.org>
> ---
>   debian/rules | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/debian/rules b/debian/rules
> index 615289b4..6d5b82a8 100755
> --- a/debian/rules
> +++ b/debian/rules
> @@ -43,15 +43,15 @@ built: dibuild config
>   	$(MAKE) $(PMAKEFLAGS) default
>   	touch built
>   
> -config: .census
> -.census:
> +config: .gitcensus
> +.gitcensus:
>   	@echo "== dpkg-buildpackage: configure" 1>&2
>   	$(checkdir)
>   	AUTOHEADER=/bin/true dh_autoreconf
>   	dh_update_autotools_config
>   	$(options) $(MAKE) $(PMAKEFLAGS) include/platform_defs.h
>   	cp -f include/install-sh .
> -	touch .census
> +	touch .gitcensus
>   
>   dibuild:
>   	$(checkdir)
> @@ -72,7 +72,7 @@ dibuild:
>   clean:
>   	@echo "== dpkg-buildpackage: clean" 1>&2
>   	$(checkdir)
> -	-rm -f built .census mkfs/mkfs.xfs-$(bootpkg)
> +	-rm -f built .gitcensus mkfs/mkfs.xfs-$(bootpkg)
>   	$(MAKE) distclean
>   	-rm -rf $(dirme) $(dirdev) $(dirdi)
>   	-rm -f debian/*substvars debian/files* debian/*.debhelper


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

* Re: [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743)
  2021-12-07 12:21 ` [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743) Bastian Germann
  2022-02-10 12:35   ` Bastian Germann
@ 2022-04-17 10:00   ` Bastian Germann
  2022-05-02 23:25     ` Eric Sandeen
  1 sibling, 1 reply; 6+ messages in thread
From: Bastian Germann @ 2022-04-17 10:00 UTC (permalink / raw)
  To: linux-xfs; +Cc: Darrick J . Wong

Hi!

Am 07.12.21 um 13:21 schrieb Bastian Germann:
> Fix the Debian build outside a git tree (e.g., Debian archive builds) by
> creating an empty .gitcensus instead of .census file on config.
> 
> Signed-off-by: Bastian Germann <bage@debian.org>
> Reviewed-by: Darrick J. Wong <djwong@kernel.org>

2nd friendly ping on this.
For the last few Debian releases, I applied this.

> ---
>   debian/rules | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/debian/rules b/debian/rules
> index 615289b4..6d5b82a8 100755
> --- a/debian/rules
> +++ b/debian/rules
> @@ -43,15 +43,15 @@ built: dibuild config
>   	$(MAKE) $(PMAKEFLAGS) default
>   	touch built
>   
> -config: .census
> -.census:
> +config: .gitcensus
> +.gitcensus:
>   	@echo "== dpkg-buildpackage: configure" 1>&2
>   	$(checkdir)
>   	AUTOHEADER=/bin/true dh_autoreconf
>   	dh_update_autotools_config
>   	$(options) $(MAKE) $(PMAKEFLAGS) include/platform_defs.h
>   	cp -f include/install-sh .
> -	touch .census
> +	touch .gitcensus
>   
>   dibuild:
>   	$(checkdir)
> @@ -72,7 +72,7 @@ dibuild:
>   clean:
>   	@echo "== dpkg-buildpackage: clean" 1>&2
>   	$(checkdir)
> -	-rm -f built .census mkfs/mkfs.xfs-$(bootpkg)
> +	-rm -f built .gitcensus mkfs/mkfs.xfs-$(bootpkg)
>   	$(MAKE) distclean
>   	-rm -rf $(dirme) $(dirdev) $(dirdi)
>   	-rm -f debian/*substvars debian/files* debian/*.debhelper


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

* Re: [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743)
  2022-04-17 10:00   ` Bastian Germann
@ 2022-05-02 23:25     ` Eric Sandeen
  2022-05-03  7:51       ` Bastian Germann
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Sandeen @ 2022-05-02 23:25 UTC (permalink / raw)
  To: Bastian Germann, linux-xfs; +Cc: Darrick J . Wong

On 4/17/22 5:00 AM, Bastian Germann wrote:
> Hi!
> 
> Am 07.12.21 um 13:21 schrieb Bastian Germann:
>> Fix the Debian build outside a git tree (e.g., Debian archive builds) by
>> creating an empty .gitcensus instead of .census file on config.
>>
>> Signed-off-by: Bastian Germann <bage@debian.org>
>> Reviewed-by: Darrick J. Wong <djwong@kernel.org>
> 
> 2nd friendly ping on this.
> For the last few Debian releases, I applied this.

Very sorry for the delay. Does this need magic in debian/changelog
to auto-close the bug?

I have the change itself staged for 5.16.0 now.

-Eric

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

* Re: [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743)
  2022-05-02 23:25     ` Eric Sandeen
@ 2022-05-03  7:51       ` Bastian Germann
  0 siblings, 0 replies; 6+ messages in thread
From: Bastian Germann @ 2022-05-03  7:51 UTC (permalink / raw)
  To: Eric Sandeen, linux-xfs; +Cc: Darrick J . Wong

Am 03.05.22 um 01:25 schrieb Eric Sandeen:
> On 4/17/22 5:00 AM, Bastian Germann wrote:
>> Hi!
>>
>> Am 07.12.21 um 13:21 schrieb Bastian Germann:
>>> Fix the Debian build outside a git tree (e.g., Debian archive builds) by
>>> creating an empty .gitcensus instead of .census file on config.
>>>
>>> Signed-off-by: Bastian Germann <bage@debian.org>
>>> Reviewed-by: Darrick J. Wong <djwong@kernel.org>
>>
>> 2nd friendly ping on this.
>> For the last few Debian releases, I applied this.
> 
> Very sorry for the delay. Does this need magic in debian/changelog
> to auto-close the bug?

When the "Closes: #999743" is contained in the changelog, it triggers an auto-close.
But I can also close it manually.

Thanks!

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

end of thread, other threads:[~2022-05-03  7:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-07 12:21 [PATCH v2 0/1] debian: Resend .gitcensus change Bastian Germann
2021-12-07 12:21 ` [PATCH v2 1/1] debian: Generate .gitcensus instead of .census (Closes: #999743) Bastian Germann
2022-02-10 12:35   ` Bastian Germann
2022-04-17 10:00   ` Bastian Germann
2022-05-02 23:25     ` Eric Sandeen
2022-05-03  7:51       ` Bastian Germann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.