Skip to main content

Posts

Showing posts with the label bzr

Python 3 ports of launchpadlib & ubuntu-dev-tools (library) are available

I'm happy to announce that Python 3 ports of launchpadlib & ubuntu-dev-tools (library) are available for consumption. These are 1.10.3 & 0.155 respectfully. This means that everyone should start porting their reports, tools, and scriptage to python3. ubuntu-dev-tools has the library portion ported to python3, as I did not dare to switch individual scripts to python3 without thorough interactive testing. Please help out porting those and/or file bug reports against the python3 port. Feel free to subscribe me to the bug reports on launchpad. For the time being, I believe some things will not be easy to port to python3 because of the elephant in the room - bzrlib. For some things like lp-shell, it should be easy to move away from bzrlib, as non-vcs things are used there. For other things the current suggestion is to probably fork to bzr binary or a python2 process. I ponder if a minimal usable python3-bzrlib wrapper around python2 bzrlib is possible to satisfy the nee...

local svn:externals with bzr and by-reference trees

$ bzr branch https://mingw-w64.svn.sourceforge.net/svnroot/mingw-w64/trunk $ cd trunk/ $ svn proplist -v -R https://mingw-w64.svn.sourceforge.net/svnroot/mingw-w64/trunk | grep externals -C1 Properties on 'svn-checkout/mingw-w64-headers/ddk/include': svn:externals ddk svn://svn.reactos.org/reactos/trunk/reactos/include/ddk $ bzr branch svn://svn.reactos.org/reactos/trunk/reactos/include/ddk mingw-w64-headers/ddk/include/ddk $ bzr join mingw-w64-headers/ddk/include/ddk/ $ bzr ci -m "Merging svn:externals" $ bzr merge :parent https://mingw-w64.svn.sourceforge.net/svnroot/mingw-w64/trunk is permanently redirected to https://mingw-w64.svn.sourceforge.net/svnroot/mingw-w64/trunk/ +N mingw-w64-crt/misc/wcstof.c +N mingw-w64-headers/direct-x/include/d3dx9shape.h M mingw-w64-crt/ChangeLog #snip M mingw-w64-headers/include/ChangeLog M mingw-w64-headers/include/dbghelp.h All changes applied successfully. $ bzr ci -m "merged from upstream svn" $ bzr merge svn://sv...