public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Quilt: Unsupported version of git (2.13.2)
@ 2017-08-03 14:51 Oleksandr Gavenko
  2017-08-07 10:15 ` FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)] Adam Dinwoodie
  2017-08-07 14:44 ` Quilt: Unsupported version of git (2.13.2) Oleksandr Gavenko
  0 siblings, 2 replies; 6+ messages in thread
From: Oleksandr Gavenko @ 2017-08-03 14:51 UTC (permalink / raw)
  To: cygwin


bash# guilt list
Unsupported version of git (2.13.2)

bash# cygcheck.exe -c -d | grep git'\|'guilt
37:git                                   2.13.2-2
42:guilt                                 0.35-2

-- 
http://defun.work/


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)]
  2017-08-03 14:51 Quilt: Unsupported version of git (2.13.2) Oleksandr Gavenko
@ 2017-08-07 10:15 ` Adam Dinwoodie
  2017-08-07 10:42   ` Corinna Vinschen
  2017-08-07 14:44 ` Quilt: Unsupported version of git (2.13.2) Oleksandr Gavenko
  1 sibling, 1 reply; 6+ messages in thread
From: Adam Dinwoodie @ 2017-08-07 10:15 UTC (permalink / raw)
  To: cygwin

On Thu, Aug 03, 2017 at 05:50:42PM +0300, Oleksandr Gavenko wrote:
> 
> bash# guilt list
> Unsupported version of git (2.13.2)
> 
> bash# cygcheck.exe -c -d | grep git'\|'guilt
> 37:git                                   2.13.2-2
> 42:guilt                                 0.35-2

This has been fixed in guilt v0.36, which was released in August 2015,
specifically with commit v0.35-7-gf1c2f45.

Jari, you're listed as the current maintainer of guilt.  Could you
release an updated package?

(In testing the command Oleksander is trying to run after resolving that
one problem, I'm also hitting the bug that's fixed in commit
v0.36-3-g2bd00ac.  As best I can tell, that's not fixed in any formal
release of guilt, so you might need to rebuild from the tip of the
master branch rather than being able to use a specific version.)

Adam

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)]
  2017-08-07 10:15 ` FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)] Adam Dinwoodie
@ 2017-08-07 10:42   ` Corinna Vinschen
  0 siblings, 0 replies; 6+ messages in thread
From: Corinna Vinschen @ 2017-08-07 10:42 UTC (permalink / raw)
  To: cygwin

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

On Aug  7 11:15, Adam Dinwoodie wrote:
> On Thu, Aug 03, 2017 at 05:50:42PM +0300, Oleksandr Gavenko wrote:
> > 
> > bash# guilt list
> > Unsupported version of git (2.13.2)
> > 
> > bash# cygcheck.exe -c -d | grep git'\|'guilt
> > 37:git                                   2.13.2-2
> > 42:guilt                                 0.35-2
> 
> This has been fixed in guilt v0.36, which was released in August 2015,
> specifically with commit v0.35-7-gf1c2f45.
> 
> Jari, you're listed as the current maintainer of guilt.  Could you
> release an updated package?

Jari never read this list.  You will have to CC him.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: Quilt: Unsupported version of git (2.13.2)
  2017-08-03 14:51 Quilt: Unsupported version of git (2.13.2) Oleksandr Gavenko
  2017-08-07 10:15 ` FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)] Adam Dinwoodie
@ 2017-08-07 14:44 ` Oleksandr Gavenko
  1 sibling, 0 replies; 6+ messages in thread
From: Oleksandr Gavenko @ 2017-08-07 14:44 UTC (permalink / raw)
  To: cygwin

On 2017-08-03, Oleksandr Gavenko wrote:

> bash# guilt list
> Unsupported version of git (2.13.2)
>
> bash# cygcheck.exe -c -d | grep git'\|'guilt
> 37:git                                   2.13.2-2
> 42:guilt                                 0.35-2

I tried to work with quilt (sorry for typo in subject). So far I have no any
blocking issue with this package.

The only annoying thing is necessity to add files before starting to make
changes. Guilt shouldn't have such issue. At lease Mercurial Queue understands
what is changed in working set despite series of already applied patches.

Sometime it is possible to avoid "quilt add" by importing patch:

  $ git diff >.diff
  $ quilt import -P fix.patch .diff
  $ rm .diff
  $ git reset
  $ quilt push

In Guilt I expect it would be a single command (or two "new" and "refresh").

My ~/.quiltrc:

  QUILT_DIFF_ARGS="--color=auto -p ab"
  QUILT_DIFF_OPTS="-p"
  QUILT_REFRESH_ARGS="-p ab"
  QUILT_PUSH_ARGS="--color=auto"
  QUILT_SERIES_ARGS="--color=auto"

  QUILT_NO_DIFF_INDEX=1
  QUILT_NO_DIFF_TIMESTAMPS=1

-- 
http://defun.work/


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)]
  2017-08-07 11:10 FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)] Adam Dinwoodie
@ 2017-09-27 12:12 ` Jari Aalto
  0 siblings, 0 replies; 6+ messages in thread
From: Jari Aalto @ 2017-09-27 12:12 UTC (permalink / raw)
  To: Adam Dinwoodie; +Cc: cygwin

On 2017-08-07 12:10, Adam Dinwoodie wrote:
| > bash# guilt list
| > Unsupported version of git (2.13.2)
| > 
| > bash# cygcheck.exe -c -d | grep git'\|'guilt
| > 37:git                                   2.13.2-2
| > 42:guilt                                 0.35-2
| 
| This has been fixed in guilt v0.36, which was released in August 2015,
| specifically with commit v0.35-7-gf1c2f45.

Latest now uploaded,
Jari

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)]
@ 2017-08-07 11:10 Adam Dinwoodie
  2017-09-27 12:12 ` Jari Aalto
  0 siblings, 1 reply; 6+ messages in thread
From: Adam Dinwoodie @ 2017-08-07 11:10 UTC (permalink / raw)
  To: jari.aalto, cygwin

Resending to Jari directly per Corinna's suggestion...

On Thu, Aug 03, 2017 at 05:50:42PM +0300, Oleksandr Gavenko wrote:
> 
> bash# guilt list
> Unsupported version of git (2.13.2)
> 
> bash# cygcheck.exe -c -d | grep git'\|'guilt
> 37:git                                   2.13.2-2
> 42:guilt                                 0.35-2

This has been fixed in guilt v0.36, which was released in August 2015,
specifically with commit v0.35-7-gf1c2f45.

Jari, you're listed as the current maintainer of guilt.  Could you
release an updated package?

(In testing the command Oleksander is trying to run after resolving that
one problem, I'm also hitting the bug that's fixed in commit
v0.36-3-g2bd00ac.  As best I can tell, that's not fixed in any formal
release of guilt, so you might need to rebuild from the tip of the
master branch rather than being able to use a specific version.)

Adam

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

end of thread, other threads:[~2017-09-27 12:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-03 14:51 Quilt: Unsupported version of git (2.13.2) Oleksandr Gavenko
2017-08-07 10:15 ` FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)] Adam Dinwoodie
2017-08-07 10:42   ` Corinna Vinschen
2017-08-07 14:44 ` Quilt: Unsupported version of git (2.13.2) Oleksandr Gavenko
2017-08-07 11:10 FAO Jari Aalto: Update guilt package request [Was: Quilt: Unsupported version of git (2.13.2)] Adam Dinwoodie
2017-09-27 12:12 ` Jari Aalto

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 read-only IMAP folder(s) and NNTP newsgroup(s).