Page MenuHomeFreeBSD
Feed Advanced Search

Jan 25 2023

melifaro added a comment to D38053: ping: Add ATF-Python tests.
  1. In the meantime the kernel delayed object reclamation model issue is fixed, maybe adapt 80fc25025ffcb0d369fc0b6d4d272ad6fd3f53c3 ?

Committed in 20ea7f26e413 .

Jan 25 2023, 4:36 PM · Python
melifaro added a comment to D38053: ping: Add ATF-Python tests.
  1. An atf_get_srcdir-equivalent to eventually read files relative to the source directory, however I think the idea is to disassociate from ATF later on.

This one slipped through the cracks, thanks for reminding! Will add in a day or two.

I thought of passing it via wrapper initially, but ended up with a bit more natural way - getting it from pytest itself.
I committed an example here.

Jan 25 2023, 2:00 PM · Python

Jan 24 2023

jlduran_gmail.com added a comment to D38053: ping: Add ATF-Python tests.
In D38053#867487, @ngie wrote:

This looks like a good start. I'm not a fan of the methodize stuff, though. I think it makes the tests harder to read and harder to search. Is there a way to parameterize the tests without using methodize, even if it becomes slightly more verbose?

If you’re referring to “pytest.marks.parametrize”, it supports an optional id= parameter which better describes tests for humans.

Jan 24 2023, 8:16 PM · Python
ngie added a comment to D38053: ping: Add ATF-Python tests.

This looks like a good start. I'm not a fan of the methodize stuff, though. I think it makes the tests harder to read and harder to search. Is there a way to parameterize the tests without using methodize, even if it becomes slightly more verbose?

Jan 24 2023, 8:11 PM · Python

Jan 23 2023

jlduran_gmail.com added a comment to D38053: ping: Add ATF-Python tests.

Thank you! I'll wait for @asomers comments to update the revision.

I'll document here my small - not really important - wishlist:

  1. Optional randomization of the test order, maybe something similar to pytest-random-order.

Nice one, can probably work out-of-the box, but the scope will be a single file, due to the way of ATF<>pytest interaction is implemented.

  1. When debugging atf-python tests, the output could be a little bit less busy, maybe pytest_terminal_summary et al. instead of print() could be one answer.

I get the intent and I agree. Maybe you could come up with an example (or even a diff) on how do you see it?

Sure! Once all ping tests are added, I should be more acquainted with the testing framework and propose a revision.

  1. An atf_get_srcdir-equivalent to eventually read files relative to the source directory, however I think the idea is to disassociate from ATF later on.

This one slipped through the cracks, thanks for reminding! Will add in a day or two.

  1. In the meantime the kernel delayed object reclamation model issue is fixed, maybe adapt 80fc25025ffcb0d369fc0b6d4d272ad6fd3f53c3 ?

Yep, been on my list for quite some time, I'll do the change in a day or two.

Great!

Jan 23 2023, 10:35 AM · Python

Jan 22 2023

melifaro added a comment to D38053: ping: Add ATF-Python tests.

Thank you! I'll wait for @asomers comments to update the revision.

I'll document here my small - not really important - wishlist:

  1. Optional randomization of the test order, maybe something similar to pytest-random-order.

Nice one, can probably work out-of-the box, but the scope will be a single file, due to the way of ATF<>pytest interaction is implemented.

  1. When debugging atf-python tests, the output could be a little bit less busy, maybe pytest_terminal_summary et al. instead of print() could be one answer.

I get the intent and I agree. Maybe you could come up with an example (or even a diff) on how do you see it?

  1. An atf_get_srcdir-equivalent to eventually read files relative to the source directory, however I think the idea is to disassociate from ATF later on.

This one slipped through the cracks, thanks for reminding! Will add in a day or two.

  1. In the meantime the kernel delayed object reclamation model issue is fixed, maybe adapt 80fc25025ffcb0d369fc0b6d4d272ad6fd3f53c3 ?

Yep, been on my list for quite some time, I'll do the change in a day or two.

Jan 22 2023, 1:08 PM · Python

Jan 17 2023

jlduran_gmail.com added a comment to D38053: ping: Add ATF-Python tests.

Thank you! I'll wait for @asomers comments to update the revision.

Jan 17 2023, 10:23 PM · Python
melifaro accepted D38053: ping: Add ATF-Python tests.

So generally, it looks good to me, and I'm fine with committing the change. @asomers: what do you think?

Jan 17 2023, 12:50 PM · Python

Jan 16 2023

jlduran_gmail.com added a comment to D38053: ping: Add ATF-Python tests.

Here are the last iteration changes:

  • Use a dictionary for expectations — this keeps both ping and pinger tests inline. Comparing the expected with the actual subprocess.CompletedProcess was also not feasible. It also was suggested initially by @melifaro.

One thing I noticed is that atf-python tests are slower than atf-sh, this was somewhat expected, but when all tests run, the total time builds up. I believe the gains are really from the development perspective.

Q: what's the runtime? e.g. median time reported by kyua test?

Jan 16 2023, 9:09 PM · Python
melifaro added a comment to D38053: ping: Add ATF-Python tests.

Here are the last iteration changes:

  • Use a dictionary for expectations — this keeps both ping and pinger tests inline. Comparing the expected with the actual subprocess.CompletedProcess was also not feasible. It also was suggested initially by @melifaro.

One thing I noticed is that atf-python tests are slower than atf-sh, this was somewhat expected, but when all tests run, the total time builds up. I believe the gains are really from the development perspective.

Q: what's the runtime? e.g. median time reported by kyua test?
There are some tests in net/routing, doing similar SingleVnet-isolated testing, written both in python and in C.
C version takes ~120ms per test, python version takes ~330ms. My take is that the runtime under 0.5 second is fine. It may also be not easy to decrease those 330ms, as pytest does a lot of preparation work, but the runner calls it for a single test.
I suspect that importing scapy.all may contribute to the delay here. Note that kyua needs to first run list for the tests (to determine the isolation details) and then actual test and cleanup procedures.
Importing scapy.all in the top of the file will cause all 3 cases to wait till scapy init. I'd probably try to check if it's possible to use scapy subset and/or try to load it only when needed.

Jan 16 2023, 8:17 PM · Python
jlduran_gmail.com updated the diff for D38053: ping: Add ATF-Python tests.

Here are the last iteration changes:

Jan 16 2023, 7:01 PM · Python
jlduran_gmail.com updated the diff for D38053: ping: Add ATF-Python tests.

Updates:

  • Simple one-line ping parameter expectations are subprocess.CompletedProcesses. No need to have a custom class (ExpectedProcess) that does essentially the same thing.
  • Incorporate the code from D37876. The pinger utility (now a function) returns a subprocess.CompletedProcess as well. Parametrization and cleanup are next.
Jan 16 2023, 10:56 AM · Python

Jan 15 2023

jlduran_gmail.com added a comment to D38053: ping: Add ATF-Python tests.

Thank you for addressing the comments!
I’d still prefer to have the ids embedded explicitly via pytest.param, but I don’t insist on doing it.

Generally there may be somewhat conflicting ideas on what’s the “best” approach here, but personally I don’t think it’s a big deal here. This is a test code, it already is reasonably simple and allow for easy extension or debugging - that’s “good enough” and that’s what matters most (to me).

Jan 15 2023, 1:47 AM · Python
jlduran_gmail.com updated the diff for D38053: ping: Add ATF-Python tests.

Address more suggestions:

  • Embed the ids explicitly via pytest.param().
Jan 15 2023, 1:41 AM · Python

Jan 14 2023

melifaro added a comment to D38053: ping: Add ATF-Python tests.

Thank you for addressing the comments!
I’d still prefer to have the ids embedded explicitly via pytest.param, but I don’t insist on doing it.

Jan 14 2023, 10:56 PM · Python
jlduran_gmail.com updated the diff for D38053: ping: Add ATF-Python tests.

Address some of the suggestions:

Jan 14 2023, 7:49 PM · Python
jlduran_gmail.com added inline comments to D38053: ping: Add ATF-Python tests.
Jan 14 2023, 4:51 PM · Python
jlduran_gmail.com added a comment to D38053: ping: Add ATF-Python tests.

This looks like a good start. I'm not a fan of the methodize stuff, though. I think it makes the tests harder to read and harder to search. Is there a way to parameterize the tests without using methodize, even if it becomes slightly more verbose?

Jan 14 2023, 4:41 PM · Python
melifaro added a comment to D38053: ping: Add ATF-Python tests.

Conceptually LGTM, please see some comments on the structure

Jan 14 2023, 3:19 PM · Python
asomers added a comment to D38053: ping: Add ATF-Python tests.

This looks like a good start. I'm not a fan of the methodize stuff, though. I think it makes the tests harder to read and harder to search. Is there a way to parameterize the tests without using methodize, even if it becomes slightly more verbose?

Jan 14 2023, 3:10 PM · Python
jlduran_gmail.com requested review of D38053: ping: Add ATF-Python tests.
Jan 14 2023, 1:44 PM · Python

Dec 27 2022

pi closed D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Dec 27 2022, 3:26 PM · Python
pi closed D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
Dec 27 2022, 3:02 PM · Python

Dec 16 2022

dereks_lifeofadishwasher.com updated the diff for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.

Update to 8.0.0.18

Dec 16 2022, 9:55 PM · Python

Dec 3 2022

lwhsu added a member for Python: lwhsu.
Dec 3 2022, 7:16 PM

Oct 19 2022

dereks_lifeofadishwasher.com updated the diff for D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
  • Update WWW: to Makefile
Oct 19 2022, 12:52 AM · Python
dereks_lifeofadishwasher.com updated the diff for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
  • Change versioning to handbook: Example 19. Using USE_GITHUB to Access a Commit Between Two Versions
  • Update WWW: to Makefile
Oct 19 2022, 12:51 AM · Python

Oct 18 2022

koobs added a comment to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.

@dereks_lifeofadishwasher.com Can we the/an existing version format that upstream uses (vX.Y.Z), optionally suffixed appropriately with relevent git tag if its 'in between versions' ?

Oct 18 2022, 11:09 PM · Python

Aug 6 2022

dereks_lifeofadishwasher.com updated the diff for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.

Move to a GH_TAGNAME from the released 8.0.0 to include some IMAP fixes
All tests pass.

Aug 6 2022, 11:29 PM · Python

Jun 6 2022

dereks_lifeofadishwasher.com updated the diff for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
  • Use USES=pytest
Jun 6 2022, 11:26 PM · Python
dereks_lifeofadishwasher.com updated the diff for D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

portfmt sort order

Jun 6 2022, 11:24 PM · Python
dereks_lifeofadishwasher.com added a comment to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

Yes, that works well. Thanks for the recommendation.

Jun 6 2022, 10:40 PM · Python
dereks_lifeofadishwasher.com updated the diff for D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
  • update for USES=pytest
Jun 6 2022, 10:39 PM · Python
arrowd added inline comments to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
Jun 6 2022, 5:34 AM · Python
koobs accepted D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

LGTM mate, nice work!

Jun 6 2022, 1:21 AM · Python
dereks_lifeofadishwasher.com added a comment to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

er sorry I misread that. Ok added comment.

Jun 6 2022, 1:08 AM · Python
dereks_lifeofadishwasher.com updated the diff for D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
  • Add comment stating why USE_GITHUB vs sdist
Jun 6 2022, 1:08 AM · Python
koobs added a comment to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

As expected. I do USES -> USE_* -> *_FOO, but wont block review on that.

Jun 6 2022, 1:04 AM · Python
dereks_lifeofadishwasher.com added a comment to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

They do disagree. 15.8 porters handbook recommends keeping USE_* vars together (using USE_GITHUB GH_* as example).

Jun 6 2022, 12:52 AM · Python

Jun 5 2022

koobs requested changes to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
Jun 5 2022, 11:11 PM · Python

May 27 2022

dereks_lifeofadishwasher.com added a comment to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

Upstream updated https://github.com/sethmlarson/rfc6555/pull/8 and prefer not to add test to sdist.

May 27 2022, 10:44 PM · Python
meta accepted D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

All review comments have been addressed. LGTM.

May 27 2022, 6:32 AM · Python

Mar 8 2022

dereks_lifeofadishwasher.com updated the test plan for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 8 2022, 3:55 AM · Python

Mar 6 2022

dereks_lifeofadishwasher.com added a comment to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.

Tested on py37:

Mar 6 2022, 10:30 PM · Python
dereks_lifeofadishwasher.com updated the diff for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
  • Added patch to fix idle folder with spaces (forget this from the init. review).
  • Capped offlineimap3 to 3.7-3.9 since imaplib2 is limited to 3.9. In turn only testing offlineimap3 for py37/8/9
  • Patched docs sphinx-build command to use the correct conncurrent version. Will need to fix upstream.
  • Patched out tests that require a network connection and user auth. Maybe have upstream move these out of unittest?
Mar 6 2022, 10:24 PM · Python
dereks_lifeofadishwasher.com planned changes to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.

Run unittests with python37, 38. 39. 310, and 311

Mar 6 2022, 4:18 AM · Python
dereks_lifeofadishwasher.com updated the diff for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.

Sorry in the wrong branch. Updating from correct one.

Mar 6 2022, 4:17 AM · Python
dereks_lifeofadishwasher.com updated the diff for D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
  • Add comments for build depends and pypi packaging
  • include CONFLICTS_INSTALL just in case someone is still using the removed py-offlineimap package
Mar 6 2022, 4:15 AM · Python

Mar 5 2022

koobs added inline comments to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 5 2022, 12:01 AM · Python

Mar 4 2022

koobs added inline comments to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 4 2022, 11:59 PM · Python
dereks_lifeofadishwasher.com updated the summary of D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 4 2022, 5:46 AM · Python
dereks_lifeofadishwasher.com added inline comments to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 4 2022, 5:44 AM · Python
dereks_lifeofadishwasher.com added inline comments to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 4 2022, 5:41 AM · Python
dereks_lifeofadishwasher.com added inline comments to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 4 2022, 5:12 AM · Python

Mar 3 2022

dereks_lifeofadishwasher.com updated the summary of D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
Mar 3 2022, 11:50 PM · Python
dereks_lifeofadishwasher.com updated the diff for D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.

Added tests and moved to github until tests are added

Mar 3 2022, 11:48 PM · Python

Mar 2 2022

koobs requested changes to D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
  • Add TEST_DEPENDS and (do-)test target
  • Confirm QA (Added to TEST PLAN section)
Mar 2 2022, 11:00 PM · Python
koobs retitled D34388: [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders from mail/py-offlineimap3: New port mail/py-offlineimap3 to [NEW] mail/py-offlineimap3: Two-way synchronization of local Maildir and IMAP folders.
Mar 2 2022, 10:37 PM · Python
koobs requested changes to D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
  • Add TEST_DEPENDS and (do-)test target for QA
  • Need confirmation of QA in TEST PLAN
Mar 2 2022, 10:35 PM · Python
koobs retitled D34389: [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555 from mail/py-rfc6555: New port mail/py-rfc6555 to [NEW] mail/py-rfc6555: Happy Eyeballs Algorithm described in RFC 6555.
Mar 2 2022, 10:33 PM · Python

Jul 1 2021

kai added a member for Python: kai.
Jul 1 2021, 11:04 AM

Jun 30 2020

miguel_gocobachi.dev added a member for Python: miguel_gocobachi.dev.
Jun 30 2020, 11:21 PM

Apr 26 2020

dbaio added a member for Python: dbaio.
Apr 26 2020, 5:04 PM

Apr 17 2020

crees added a member for Python: crees.
Apr 17 2020, 9:45 AM

Feb 29 2020

lbartoletti closed D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Feb 29 2020, 6:24 PM · Python

Feb 27 2020

lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

missing file to remove

Feb 27 2020, 9:53 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Delete old patches from wxPython30

Feb 27 2020, 4:14 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

rebase

Feb 27 2020, 3:57 PM · Python

Feb 25 2020

mat added a comment to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
In D21915#522759, @lbartoletti_tuxfamily.org wrote:

My biggest fear with svn :)
How to be sure? I see that x11-toolkits/py-wxPython40 is copied from x11-toolkits/py-wxPython30. OK, but I deleted useless patches [1] and are not marked as deleted

[1] files/patch-src_gtk_propgridwrap.cpp, files/patch-src_gtk_gdi__wrap.cpp, files/patch-setup.py

Feb 25 2020, 2:04 PM · Python

Feb 22 2020

lbartoletti added a comment to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Looks good to me. Make sure to include

Exp-run by: antoine
Feb 22 2020, 6:09 AM · Python

Feb 21 2020

tcberner accepted D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Looks good to me. Make sure to include

Feb 21 2020, 7:05 PM · Python

Feb 19 2020

lbartoletti added a comment to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

exp-run looks fine https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241893#c13

Feb 19 2020, 8:19 PM · Python

Feb 17 2020

dbn removed a member for Python: dbn.
Feb 17 2020, 2:12 PM

Feb 12 2020

lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Fix my mail adress

Feb 12 2020, 5:06 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Bump portversion for graphics/djvusmooth

Feb 12 2020, 5:04 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Bump portversion for all ports which require wxPython40

Feb 12 2020, 5:02 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Replace LIB_DEPENDS to USE_WX for graphics/djvusmooth

Feb 12 2020, 4:53 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Update comms/congruity and graphics/py-mayavi to USE_WX=3.0+

Feb 12 2020, 4:40 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Bump portversion emulators/playonbsd

Feb 12 2020, 4:33 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

bump portversion for cad/kicad and cad/kicad-devel

Feb 12 2020, 4:31 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Fix cad/kicad-devel

Feb 12 2020, 4:30 PM · Python

Jan 23 2020

lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Bump portrevision for audio/py-karaoke

Jan 23 2020, 1:15 PM · Python

Jan 22 2020

lbartoletti added inline comments to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Jan 22 2020, 9:15 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Fix build for audio/py-karaoke. Use wxgtk-2.8

Jan 22 2020, 9:11 PM · Python

Jan 18 2020

lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
  • Update Mk/bsd.wx.mk to use x11-toolkits/py-wxPython40 for wxWidgets 3.0
  • While I'm here fix stagging for emulators/playonbsd
  • Fix Makefile for cad/kicad (explicitly use wxPyton40 aka Phoenix)
Jan 18 2020, 4:27 PM · Python
lbartoletti added inline comments to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Jan 18 2020, 9:28 AM · Python
lbartoletti added inline comments to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Jan 18 2020, 7:21 AM · Python
lbartoletti added reviewers for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language: tcberner, swills.
Jan 18 2020, 7:15 AM · Python
lbartoletti added inline comments to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Jan 18 2020, 7:15 AM · Python

Dec 30 2019

lbartoletti added inline comments to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Dec 30 2019, 8:19 AM · Python

Dec 29 2019

koobs requested changes to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Dec 29 2019, 4:05 AM · Python

Dec 27 2019

lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Fix stripcmd. Thanks koobs@

Dec 27 2019, 9:38 PM · Python
koobs added inline comments to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Dec 27 2019, 2:29 AM · Python

Dec 26 2019

lbartoletti added a comment to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

gentle ping koobs@

Dec 26 2019, 8:36 AM · Python

Nov 29 2019

lbartoletti added inline comments to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Nov 29 2019, 5:37 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

New diff:

Nov 29 2019, 5:33 PM · Python

Nov 12 2019

koobs requested changes to D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

If this is a copy of an existing port, create the new port using svn copy (as this is what committers will have to do). Also have the benefits of that copy being tracked and displayed in the phabricator differential, and showing the diffs to the original source (so we know whats been updated/changed, rather than everything being new)

Nov 12 2019, 12:16 AM · Python
koobs retitled D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language from [NEW PORT] x11-toolkits/py-wxPython40 to [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Nov 12 2019, 12:05 AM · Python

Nov 11 2019

lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.

Fix pkg-descr

Nov 11 2019, 8:21 PM · Python
lbartoletti updated the diff for D21915: [NEW PORT] x11-toolkits/py-wxPython40: GUI toolkit for the Python programming language.
Nov 11 2019, 7:56 PM · Python