From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 3E5E11F45E for ; Thu, 13 Feb 2020 16:19:34 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc:content-type :content-transfer-encoding; q=dns; s=default; b=Ol3KjmLQYgMM0FdH 6awYDIuVhck98OLafDDTBoTeAz4YLs5EgCBF4Klc1viPrYE2bh43/pe3hAYY7NGP dUmZlItLyek50Z7ZUNGr90h9nZpoeQylMdl4cn1m02hC/n0lLoq88qHip0XEgWIY 9rSxyCxt69nJMCyey+7pAyzQtIE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc:content-type :content-transfer-encoding; s=default; bh=BOBBVnhfB1g36A/xQV+FG9 PfQlU=; b=LY5WdNKAILx9Ku0xyryKQaxAjSU185GokfY4pHcZELGP/O9pguLZUP Yn7YJ5E5wvhzy+wlwUoSzmQpxRLDH9a0212brEydI0DuxoX1jZjcARswc+fzaDlc GHlhQvK+M3B6SMLSv8cj5dt/qMgJYDIy83ITnHWIvLTchdGctGSbU= Received: (qmail 115708 invoked by alias); 13 Feb 2020 16:19:23 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 115587 invoked by uid 89); 13 Feb 2020 16:19:22 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: us-smtp-delivery-1.mimecast.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581610759; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=bRNXV4gmwxN+QFkuFMRmJkeki4/sgmsjytSUhoU6NGs=; b=fTj2+ZHYIQilL6fYMRHm8KlGK9krqLwFD/YrGIuJpkAgwUN8WFx6a8j5KDl+YUH/UnzL9l 8F6tqOEmHpmjQCLTCcGVEI2ZkfwCVjAN49ctqbHIv3lIWcvrDZLrkKyGtAEb81uKxwfrac Q+rX3/Te0aYh16koatD+8+9AZWtbSGY= MIME-Version: 1.0 References: In-Reply-To: From: "Carlos O'Donell" Date: Thu, 13 Feb 2020 11:19:05 -0500 Message-ID: Subject: Re: Review promise :-) To: Zack Weinberg Cc: GNU C Library X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Thu, Feb 13, 2020 at 11:01 AM Zack Weinberg wrote: > > On Thu, Feb 13, 2020 at 9:57 AM Carlos O'Donell wrote= : > > > > Increasingly I'm actually turning to patchwork to look for patches to > > review. I'm trying to structure my work day around an eventual attempt > > to use Patchwork 2.0. > > > > For example I was looking for patches from H.J. to review and I > > cleaned up his list of owned patches in patchwork to track down what > > still needed review and committing. > > > > This was actually quite a nice way to work and is the kind of workflow > > I wanted to have in place with gerritt but this works with email. > > > > The hard part is that each developers queue is messy because we don't > > keep them clean. > > Is there a way to operate on lots of patches at once? My queue is > full of old patches that should be marked either committed or dropped, > it would be nice to not have to load the individual patch page for > each one and push the same buttons for each. Yeah, absolutely. You have two options: * Script it using the pwclient CLI * Use the web interface, apply a filter, click the top "Patch" checkmark to check all selected, then apply a property and it is applied to all the selected patches. Cheers, Carlos.