July 2017 Archives by thread
Starting: Sat Jul 1 12:40:18 UTC 2017
Ending: Mon Jul 31 21:10:10 UTC 2017
Messages: 2821
- [bibutils] annotated tag debian/4.12-5 created (now 1c45a79)
David Bremner
- [bibutils] annotated tag debian/4.12-4 created (now 1018db8)
David Bremner
- [bibutils] annotated tag upstream/5.11 created (now 834376c)
David Bremner
- [bibutils] branch pristine-tar updated (515b9db -> 18ae57e)
David Bremner
- [caffe] branch master updated (cda4af7 -> cb87b98)
Zhou Mo
- [caffe] branch master updated (cb87b98 -> 4f64678)
Zhou Mo
- [bibutils] branch master updated (089353e -> 61fe1d1)
David Bremner
- [vspline] branch master created (now 6c6a977)
Kay F. Jahnke
- [vspline] 01/72: Initial commit of README.rst
Kay F. Jahnke
- [vspline] 02/72: Initial commit of vspline's source code and examples
Kay F. Jahnke
- [vspline] 03/72: some changes to the documentation, rewrite of vectorized prefilter My initial implementation of the vectorized prefiltering routine was functional, but it was based on iterators which I wrote when I initially worked the solver with the arrays' data directly, which took some finessing and a proxy type. When my speed tests showed that buffering was the way to go and I made it the standard modus operandi, the code became overly complex for the task. So I decided to rewrite it using only what is strictly necessary for buffered filtering, which made the result much more concise and legible. The introduction of extended scatter/gather routines (with 'extrusion' parameters) helped expressing clearly and concisely what's going on. Performance is roughly the same, though a few more optimizations have been introduced which should help with corner cases.
Kay F. Jahnke
- [vspline] 04/72: broadened simdized type in prefilter, saved 1 thread two small changes with performance gains which surprised me. The first one is changing simdized_type in the vectorized prefiltering code from plain Vc::Vector<ele_type> to a SimdArray twice that size. The performance gain isn't much, but seems to be a few percent and every little helps. It's just one place in the code where the change is done and it trickles down, so it's easy to change back or try something else. The larger speedup came from a simple change in the multithreading code in common.h (divide_and_conquer, ~_2), where I changed from creating nthreads new threads for the nthreads chunks to creating only one thread less and processing the last chunk in the current thread instead of leaving it to idle until the other threads are done. Seems creating threads is reasonably expensive after all, I hadn't thougt the effect so large. Makes me wonder if it weren't better to have a thread pool and use that instead. Furthermore there were some small changes in the prefilter's type handling (mattype is now an optional template argument, removing the necessity of defining an element-expansion for simdized types) - and weeding out unneccessary 'using namespace vigra::multi_math' statements in several headers.
Kay F. Jahnke
- [vspline] 05/72: Factored out most of the prefiltering code to filter.h I noticed that the prefiltering code which was initially in prefilter.h was very close to a general routine performing the type of filter needed for b-spline prefiltering. So I factored it out into filter.h, which does not have any code specific to b-splines and implemented the b-spline-specific routines in prefilter.h as thin wrappers of the top-level function in filter.h. at the same time, I restructured the code so that it's as similar as possible for the vectorized and unverctorized code, and uses line buffering for the unvectorized code to speed up unvectorized operation. With the modifications made in the past week or so, I now have prefiltering times down to under 10ms per full HD float RGB image (vectorized), and roughly the same for lower-order splines not using vector code.
Kay F. Jahnke
- [vspline] 06/72: Finished coding for the 1D specialization of the filter I feel I've now found a reasonable path treating 1D arrays, where large arrays will benefit very much and resource still aren't stretched too far. I also did some minor changes in the filter code, now passing the gain to the filter instead of the previous lambda_exponent, the new method is more flexible.
Kay F. Jahnke
- [vspline] 07/72: moved allocation of workspace to evaluator, moved vector type fixing to traits class with the vector type now fixed in a traits class, I managed to globally change the simdized type to a SimdArray with twice the Vc::Vector size, which resulted in ca. 15% overall eval performance gain. And I moved the allocation of the 'workspace' into class evaluator, which makes it more like the functor I have in mind when I rework the remap code.
Kay F. Jahnke
- [vspline] 08/72: finally found a satisfactory way to make class evaluator thread safe and still fast.
Kay F. Jahnke
- [vspline] 09/72: more work on evaluation, class warper introduced I did some more work on class evaluator, adding code to work with separate sources of integral and real components of split coordinates. This made it possible to use a new class 'warper' in remap.h, which contains two MultiArray(View)s, one to nD integral coordinates, one to nD real remainders. I wrote the corresponding remap function (for now requiring the arrays in the warper to be unstrided) and tested, seems like all is well, but only the unvectorized code seems to profit from the new scheme.
Kay F. Jahnke
- [vspline] 10/72: using aggregate_traits throughout, work on pv.cc I'm trying to push some more fixed types out, so now I've worked on vigra::TinyVecors, replacing them with aggregate_traits<T, N>::type. I'd like to move to code where the aggregated types 'collapse' to simple type T if N==1, but I still have trouble getting my code to work with this definition. Anyway, factoring more of the type-fixing out is a good idea. I've also had good fun with pv. I tuned it some more and by now it's running quite smoothly at 50fps, except for some sfml-specific quirls which I can't resolve: some 10 secondes after starting pv, I get a 'does not respond' false error which I have to acknowledge, sometimes resulting in a crash soon after for no apparent reason. Sometimes the false error message even appears twice. Apparently this can be fixed by switching to a newer sfml version, but the 'stable' version 2.4 I downloaded crashed istantly, and compiling from source now also results in an error (which doesn't seem to be sfml's fault but a compiler bug) - so there's an impasse here... Anyway, if pv is running it runs fine, and I've added a caleidoscope function just for fun which modifies the warp array only, so that the resulting caleidoscopic animation is just as fast as the plain image.
Kay F. Jahnke
- [vspline] 11/72: new code for multithreading, currently in impulse_response.cc ... where it could be easily developed and tested. I was unhappy with 'divide_and_conquer' and wanted generalized code for multithreading over sections of manifolds. Staring out with several attempts (still in this commit) using tuples, I finally figured out that it would be best to introduce proper notions of 'range' and 'partitioning' and use them explicitly. I now have a multithreading routine which is just about as general as possible, taking any number of arguments. The downside is a bit of extra burden on the functors pased to the individual threads: they aren't fed the partitions themselves, but only the partitioning information, so that they have to apply that partitioning information to the manifolds they process.
Kay F. Jahnke
- [vspline] 12/72: factored out multithreading code into multithread.h, using it in filter.h Now that I rewrote the multithreading code, I need to make some changes to the code using multithreading as well, since I introduced the passing of ranges together with the 'whole' arguments to the single-thread code and the signatures are slightly different. In this intermediate commit, the old code in common.h (splite_array_to_cunks, divide_and_conquer) is still present and used for evaluation of the spline, but the (pre)filtering code already uses the new multithreading code in multithread.h.
Kay F. Jahnke
- [vspline] 13/72: multithread() from multithread.h now used for all multithreading I did the rewrite of the code for multithreading in remap.h and pv.cc. This made the 'divide_and_conquer' code in common.h obsolete. While using multithread() I found no way to pass references 'through' multithread(), so now I use pointers throughout to do the passage. Changing the single-threaded code turned out straightforward by simply adding the extra range parameter, changing all access to manifolds to pointer access but instantly on procedure entry forming the subarrays:
Kay F. Jahnke
- [vspline] 14/72: small changes, documentation
Kay F. Jahnke
- [vspline] 15/72: polishing, new bc code TAG, remap now takes evaluator, not bspline Initially I had plans to have a pure virtual base class interpolator, specifying an interface for interpolating code, and inherit this interface in class evaluator. For now I've abandoned this path. what I have changed, though, is the remap routines: they now take an evaluator object instead of a bspline. This is a step in the same direction; a bspline object is pretty much what I had in mind for an 'interpolator' type object, so I may proceed from here to introduce the pure virtual base. What's the reason for this? After all it burdens the calling code with an extra step (to create the evaluator)? the idea is to be able to use interpolators other than b-splines in the remap routines, which only require objects able to produce an interpolated value for a coordinate and not specifically only b-splines. So the remap code can become more general. I also worked on the mapping code. For the mappings REJECT, LIMIT, and the new mapping TAG there are now also variants (REJECTP, LIMITP and TAGP) which reject with a higher ceiling, akin to PERIODIC mappings. Another idea which hasn't made it into the code base is to capture the sequence coordinate->split coordinate->offset+deltas in eval.h in separate code and have less variants of eval/v_eval. So far this isn't working satisfactorily, so I left it out.
Kay F. Jahnke
- [vspline] 16/72: changed shifting code, smaller changes to pv I now save the initial boundary conditions used for prefiltering and revert to them during 'shifting' of the spline, because the shifting produced erroneous results with REFLECT bcs when the spline was later run with RTAG maping mode. pv now runs fine with all combinations of pan-mode and HQ splines and with full and partial sphericals - it takes a few extra command line arguments to fix the degrees for same, and has the arguments for partials.
Kay F. Jahnke
- [vspline] 17/72: added interpolator.h interpolator.h has an interface definition for a class 'interpolator' with those methods defined pure virtual which are essential for remapping from unsplit coordinates. class evaluator fulfills this interface, but since the interface only requires a few methods to be present, it's quite easy to write alternative interpolators, as 'nearest_neighbour' in the same file, which provides a possibly minimally faster implementation of nearest-neighbour interpolation than the one resulting from evaluating a b-spline with degree 0. The idea is to open the remapping code, where it isn't specific to b-splines (like, when using split coordinates), to use with different interpolators, since it isn't specific to b-splines. This more general remapping code (taking an interpolator as a template argument) performs just as well. I also did a bit of work on pv to work better with partial sphericals.
Kay F. Jahnke
- [vspline] 18/72: polished mapping code now all the mappings resort to the raw mappings, reducing code redundancy. also some minor changes there, added more documentation.
Kay F. Jahnke
- [vspline] 19/72: stutter-free panning in pv I found ways to avoid dropped frames in pv. I took several measures: - the frames are now rendered in a separate thread with some rendering ahead-of-time so that the overall rate is steadier - if there are still dropped frames, I decrease the apparent frame rate by showing all frames twice thrice etc. - with showing them twice I'm still at 30 fps, which looks smooth if it's not panning too fast So now I can run fine with linear interpolation at 30fps and with NN interpolation at 60 fps; just linear interpolation and 60 fps don't usually work, and with some situations (large fov) I need to switch to 30fps and NN. So I run 'technical' 60 fps all the time; the graphics system copes just fine, the dropped frames were really because some arrived too late. Ah, and I implemented direct interpolation to RGBA, saving the intermediate float RGB image. This should also have helped with speeding up.
Kay F. Jahnke
- [vspline] 20/72: polished pv some more I tweaked nn and bilinear interpolation and now I get most panos to run at 60fps and bilinear without stutter. Only when the panorama is very large or the fov is very large (or near zenith or nadir) I have to throttle.
Kay F. Jahnke
- [vspline] 21/72: mainly work on multithreading, pv I changed the multithreading code to use a thread pool. At the same time I introduced new joint processing code which makes the multithreading more fine-grained, so that the workload is more evenly distributed to the worker threads. The new code is partly in multithread.h, which has the joint task handling, and partly in thread_pool.cc, which has to be compiled separately and linked in. pv is using the new methods. The biggest change is the calculation of the HQ b-spline in the background while panning is already running on the LQ spline.
Kay F. Jahnke
- [vspline] 22/72: consolidated opertion with thread pool, now header-only.
Kay F. Jahnke
- [vspline] 23/72: added code for evaluation of mesh grids to remap.h
Kay F. Jahnke
- [vspline] 24/72: pv now uses image pyramid To further reduce stutter with large panoramas, I added code to use a pyramid of slightly smoothed, scaled down spline objects which are put to use depending on the scale of the display. I commit this status quo because it seems to be a nice milestone without any immediately obvious bugs.
Kay F. Jahnke
- [vspline] 25/72: nice working state of pv. license change of pv to GPL3 pv now has smooth zooming and panning at 60 fps for most cases.
Kay F. Jahnke
- [vspline] 26/72: removed gradient.cc
Kay F. Jahnke
- [vspline] 27/72: nice working state of pv
Kay F. Jahnke
- [vspline] 28/72: commit before removing pv.cc
Kay F. Jahnke
- [vspline] 29/72: license change of pano_extract to GPL3, proper CL argument handling
Kay F. Jahnke
- [vspline] 31/72: added coordinate.h
Kay F. Jahnke
- [vspline] 32/72: worked on eval.h; now have specialized code for NN and linear interpolation inside class evaluator, which made my handcoded interpolators in pv obsolete. Also added a new mapping mode fo splines made with REFLECT bcs which don't actually need the reflection and can be evaluated RAW. The new mapping mode RRAW takes care of the brace which may be widened.
Kay F. Jahnke
- [vspline] 33/72: added specializations for splines of degree 0 and 1 to have specialized nearest-neighbour and linear interpolators in vspline, which makes it as fast as hand-coded code for the purpose. Also introduced 'evenness' for raw-mode remaps without using mmap.
Kay F. Jahnke
- [vspline] 34/72: removed tf_remap I have done away with tf_remap in favour of only providing index_remap. index_remap can be used to the same effect, but burdens the implementation of a transformation object on the calling code. Yet wrapping an evaluator in an outer object which can do the necessary transformation isn't hard, and doing so is more efficient than using the slightly awkward vspline::transform object (though it's auto-broadcast method seemed like a good idea at the time...) removing tf_remap and vspline::transform made the code in remap.h a good bit slimmer, so I'm quite happy with it now. In pv, I have also removed all use of the mmap object in class evaluator, but leaving the code in mapping.h for the time being does no harm, though I may eventually remove automatic mapping for all BC codes other than those which can also be used as boundary conditions.
Kay F. Jahnke
- [vspline] 35/72: small changes
Kay F. Jahnke
- [vspline] 36/72: minor changes
Kay F. Jahnke
- [vspline] 37/72: coded unary_functor.h as replacement for interpolator.h The type system and template args in interpolator.h still showed it's origin in eval.h, but what was encoded in interpolator.h is a broader concept of a unary functor, taking an n-dimensional input and producing an m-dimensional output, plus the vectorization and load/store methods. So I rewrote the code reflecting the workings of a unary functor and made the corresponding changes to other code. In some places I still have the 'old' type names like nd_rc_type etc., hopefully mainly where they make sense (like in eval.h). It'll probably take a while since everything gels as intended, but here is a working commit.
Kay F. Jahnke
- [vspline] 30/72: polished multithreading code, (hopefully) fixing one bug
Kay F. Jahnke
- [vspline] 38/72: removed interpolator.h from the repository
Kay F. Jahnke
- [vspline] 39/72: small changes due to problems showing up with example code these are mainly type changes in filter.h and eval.h. also added a few more examples with simple tasks (slice.cc, complex.cc)
Kay F. Jahnke
- [vspline] 40/72: added two examples, gsm.cc and gsm2.cc, which calculate the gradient squared magnitude of an image, the first implementation using dirct evaluation of the gradients in a loop as a quick shot, the second implementation creating a dedicated gsm evaluator and producing the result by using vspline::index_remap
Kay F. Jahnke
- [vspline] 41/72: some changes to the remapping code I had a bug (which did not manifest) in the handling of the recursive descent of warp_generator, which is fixed now, together with a bit of tweaking for speed. I now always recurse all the way to 1D, which resolves some type issues.
Kay F. Jahnke
- [vspline] 42/72: mainly work on remap.h This was consolidation work and performance tuning, also streamlining of the code to make it more compact. Added more comments, as well.
Kay F. Jahnke
- [vspline] 43/72: mainly documentation work
Kay F. Jahnke
- [vspline] 44/72: fixed bug for REFLECT BCs and small arrays went through examples to make sure all compile and work
Kay F. Jahnke
- [vspline] 45/72: work on documentation, fixed use_vc bug while writing documentation (front page for doxygen docu) I noticed that calls to high-level routines with use_vc set to a specific value did not always produce correct results. This was due to the flag's value not being carried all the way through to where it should have been evaluated. this should be fixed now, and roundtrip behaves as expected.
Kay F. Jahnke
- [vspline] 46/72: removed the use_vc flag in all it's guises. Now use of Vc is either switched on (by defining USE_VC) or off (default). compiles with USE_VC will alwways (try to) run the vector code. Switching off the use of the vector code in a comile with USE_VC defined is no longer an option.
Kay F. Jahnke
- [vspline] 47/72: added script to compile all examples
Kay F. Jahnke
- [vspline] 48/72: documentation
Kay F. Jahnke
- [vspline] 49/72: added map.h, with new implementation of teating out-of-bounds coordinates I was never really happy with the code in mapping.h with it's function pointers and the mixup between mapping and splitting of coordinates. So now I thought out a different way of doing the task. I want bspline objects to now have const bcv's and have the coordinate pretreatment via specialized types. map.h now has the basis for doing this: there is a collection of 'gate' types which are derived from vspline::unary_functor and offer ways of 'treating' out-of-bounds coordinates, and there is a class 'mapper' which contains a set of such gate objects and can apply them to an nD coordinate. what's missing is the integration with class evaluator and the modifications to class bspline.
Kay F. Jahnke
- [vspline] 50/72: committing changes in map.h before branching
Kay F. Jahnke
- [vspline] 51/72: separated boundary conditions and mapping codes I was unhappy with both voundary conditions and mappings sharing the same enum and being conceptually linked. Now there is a separate set of mapping codes (in common.h) and the mapping code in mapping.h is based on them. When creating evaluators from bspline objects, the old automatism of picking a mapping which 'echoed' the spline's boundary conditions was removed, the default now is to use MAP_REJECT, which throws vspline::out_of_bounds for out-of-bounds coordinates - but any of the other mappings can be used as well by simply passing in the desired mapping code(s) or an mmap object. The coundary conditions in bspline objects are now const, and the old mechanism of changing the spline's bc's in order to get different mapping behaviour when automatically creating an evaluator from a bspline object can no longer be used, which is a relief, since it simplifies matters, especially when shifting the spline; the saving of initial boundary conditions could be removed. The code in map.h to produce mapping objects which are fully templated and hence potentially faster than the std::function-based mappings in mapping.h has been taken into the code base but is currently unused.
Kay F. Jahnke
- [vspline] 52/72: wrote restore function using grid_eval, changes to roundtrip.cc
Kay F. Jahnke
- [vspline] 53/72: minor changes to the example programs, eval.h
Kay F. Jahnke
- [vspline] 54/72: changed template argument signature of grid_eval
Kay F. Jahnke
- [vspline] 55/72: polishing, mainly documantation
Kay F. Jahnke
- [vspline] 56/72: small change to documentation
Kay F. Jahnke
- [vspline] 57/72: added link to documantation
Kay F. Jahnke
- [vspline] 58/72: polished documentation
Kay F. Jahnke
- [vspline] 59/72: getting the documentatation hyperlink right...
Kay F. Jahnke
- [vspline] 60/72: clened up code in filter.h, documentation
Kay F. Jahnke
- [vspline] 61/72: minor change to comment
Kay F. Jahnke
- [vspline] 62/72: added vspline::bspline::brace() This method simply applies the brace using either coefficients already present in the spline's core or 'pulling in' a coefficient array first. This way, externally generated coefficients can easily be used to set up a bspline object for evaluation with vspline's evaluation code.
Kay F. Jahnke
- [vspline] 63/72: changed gather/scatter with extrusion code and it's use Given a simdized type ST, I noticed recently that, apart from using ST::IndexType (which uses int) for gather/scatter operations, I can use any type offering operator[] and holding the required number of indexes. Initially I filed this under nice-to-have, but since the code I'm working on produces indexes initially as ptrdiff_t (which is long on my system), I experimentally coded passing vigra::TinyVector<ptrdiff_t, N> as index type, vigra::TinyVector being a fixed size container type. To my surprise, the resulting code was faster than the code using ST::IndexType, so it looks like a win-win situation: I don't need to safeguard against index overflow (as unlikely as that may be) and I get faster code.
Kay F. Jahnke
- [vspline] 64/72: activating code in filter.h to use IndexType for gathering if indexes fit
Kay F. Jahnke
- [vspline] 65/72: change to vspline::bspline's parameter signature, polishing I moved the parameter _space to the end of bspline's constructor's argument list, since it should rarely be used. The other changes were to the comments, and also a change to class bspline's method container_size() which had a bug with SPHERICAL/REFLECT BCs. This caused problems with pano_extract in the examples, when the source image had an alpha channel, so pano_extract was changed as well.
Kay F. Jahnke
- [vspline] 66/72: minor change to comments only
Kay F. Jahnke
- [vspline] 67/72: more minor changes
Kay F. Jahnke
- [vspline] 68/72: more minor changes
Kay F. Jahnke
- [vspline] 69/72: threw out a diagnostic message, commit before branch
Kay F. Jahnke
- [vspline] 70/72: threw out BC code IGNORE, since it is really the same as ZEROPAD. Apparently, IGNORE mustn't be used in certain environments because it is occupied by something already. No problem, we don't need it anyway.
Kay F. Jahnke
- [vspline] 71/72: removed use of a vla in prefilter.h
Kay F. Jahnke
- [vspline] 72/72: modified multithread's partitioning behaviour multithread now takes a function pointer determine the partitioning function. In remap.h, partition_to_tiles is used by default. This routine has been modified to fall back to partition_to_stripes if the shape passed in isn't 2D or the partitioning to tiles doesn't yield the desired number of parts. This way, most use cases should be adequately covered, but specific needs for partitioning can also be addressed.
Kay F. Jahnke
- [vspline] branch packaging created (now fd20652)
Kay F. Jahnke
- [vspline] branch master updated (6c6a977 -> 9d012a2)
Kay F. Jahnke
- [vspline] branch master updated (9d012a2 -> 3701a6b)
Kay F. Jahnke
- [vspline] branch packaging deleted (was fd20652)
Kay F. Jahnke
- [lapack] branch master updated (c60d904 -> a9b35df)
Sébastien Villemot
- [lapack] branch pristine-tar updated (17ef980 -> 6c8bbe6)
Sébastien Villemot
- [lapack] annotated tag upstream/3.7.1 created (now 610e337)
Sébastien Villemot
- [sdformat] branch master updated (dcb837c -> be193b7)
Anton Gladky
- [sdformat] annotated tag debian/4.2.0-1 created (now f699f22)
Anton Gladky
- [sdformat] annotated tag debian/4.2.0-2 created (now bc90bc4)
Anton Gladky
- [caffe-contrib] branch master updated (60cf958 -> 0ef47f3)
Zhou Mo
- [vspline] branch master updated (3701a6b -> c6ff64c)
Kay F. Jahnke
- [tbb] branch master created (now e7a8224)
Graham Inggs
- [tbb] branch pristine-tar created (now 4f18c02)
Graham Inggs
- [tbb] annotated tag debian/2.0r014-2 created (now 5ca6907)
Graham Inggs
- [tbb] annotated tag debian/2.0r014-3 created (now 45a7b62)
Graham Inggs
- [tbb] annotated tag debian/2.0r014-4 created (now 6849b09)
Graham Inggs
- [tbb] annotated tag debian/2.0r017-1 created (now 4aca911)
Graham Inggs
- [tbb] annotated tag debian/2.0r020-1 created (now 3e9785c)
Graham Inggs
- [tbb] annotated tag debian/2.1_20080605-1 created (now 2233608)
Graham Inggs
- [tbb] annotated tag debian/2.1r015-1 created (now ef97fb2)
Graham Inggs
- [tbb] annotated tag debian/2.1r017-1 created (now 04d226e)
Graham Inggs
- [tbb] annotated tag debian/2.2+r004-1 created (now 3c63b54)
Graham Inggs
- [tbb] annotated tag debian/2.2+r009-1 created (now a83f3fa)
Graham Inggs
- [tbb] annotated tag debian/2.2+r013-1 created (now 72d54c0)
Graham Inggs
- [tbb] annotated tag debian/3.0+r018-1 created (now 3b93ab6)
Graham Inggs
- [tbb] annotated tag debian/3.0+r035-1 created (now c03b29d)
Graham Inggs
- [tbb] annotated tag debian/3.0+r035-2 created (now a5c0f4b)
Graham Inggs
- [tbb] annotated tag debian/3.0+r147-1 created (now db2c061)
Graham Inggs
- [tbb] annotated tag debian/4.0+r233+update5-0.1 created (now c301a8a)
Graham Inggs
- [tbb] annotated tag debian/4.0+r233+update5-0.2 created (now f32a462)
Graham Inggs
- [tbb] annotated tag debian/4.0+r233-1 created (now 0c90832)
Graham Inggs
- [tbb] annotated tag debian/4.0+r233-1+powerpcspe1 created (now 7802393)
Graham Inggs
- [tbb] annotated tag debian/4.1_20130516-1.1_exp1 created (now 64f7987)
Graham Inggs
- [tbb] annotated tag debian/4.1_20130613-1.1 created (now 02444a0)
Graham Inggs
- [tbb] annotated tag debian/4.1_20130613-1.1_exp1 created (now 731a47d)
Graham Inggs
- [tbb] annotated tag debian/4.1_20130613-1.2 created (now ee79bb9)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-1.1 created (now 8618f39)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-1.1_exp1 created (now ac1d506)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-1.1_exp2 created (now af5945f)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-1.2 created (now fc99fe4)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-1.2_exp2 created (now 998553a)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-1.3_exp2 created (now 63d78bb)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-1.4_exp2 created (now fb5d783)
Graham Inggs
- [tbb] annotated tag debian/4.2_20130725-2 created (now 6cb459d)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-1 created (now 663f87e)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-1+arm64 created (now 896fff4)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-1.1 created (now cd59614)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-2 created (now d91563b)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-3 created (now 237d957)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-4 created (now ea2adaa)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-5 created (now 5e095a3)
Graham Inggs
- [tbb] annotated tag debian/4.2_20140122-6 created (now 283fde0)
Graham Inggs
- [tbb] annotated tag debian/4.3_20150611-0.1 created (now 4cb3c53)
Graham Inggs
- [tbb] annotated tag debian/4.3_20150611-1 created (now fec7c82)
Graham Inggs
- [tbb] annotated tag debian/4.3_20150611-1_exp1 created (now d6eda7d)
Graham Inggs
- [tbb] annotated tag debian/4.3_20150611-1_exp2 created (now 80dbe7a)
Graham Inggs
- [tbb] annotated tag debian/4.3_20150611-1_exp3 created (now 8636f54)
Graham Inggs
- [tbb] annotated tag debian/4.3_20150611-2 created (now 978abd3)
Graham Inggs
- [tbb] annotated tag upstream/2.0r014 created (now 1b0ed50)
Graham Inggs
- [tbb] annotated tag upstream/2.0r017 created (now 7a53972)
Graham Inggs
- [tbb] annotated tag upstream/2.0r020 created (now 0f0590a)
Graham Inggs
- [tbb] annotated tag upstream/2.1_20080605 created (now b975ada)
Graham Inggs
- [tbb] annotated tag upstream/2.1r015 created (now 6145a61)
Graham Inggs
- [tbb] annotated tag upstream/2.1r017 created (now 368b9dc)
Graham Inggs
- [tbb] annotated tag upstream/2.2+r004 created (now 521cf1a)
Graham Inggs
- [tbb] annotated tag upstream/2.2+r009 created (now d276533)
Graham Inggs
- [tbb] annotated tag upstream/2.2+r013 created (now 935f6f4)
Graham Inggs
- [tbb] annotated tag upstream/3.0+r018 created (now 8a6a498)
Graham Inggs
- [tbb] annotated tag upstream/3.0+r035 created (now c4447c1)
Graham Inggs
- [tbb] annotated tag upstream/3.0+r147 created (now 55d569b)
Graham Inggs
- [tbb] annotated tag upstream/4.0+r233 created (now d3754a3)
Graham Inggs
- [tbb] annotated tag upstream/4.0+r233+update5 created (now dd0f977)
Graham Inggs
- [tbb] annotated tag upstream/4.1_20130516 created (now 7a3e40b)
Graham Inggs
- [tbb] annotated tag upstream/4.1_20130613 created (now 2b1500b)
Graham Inggs
- [tbb] annotated tag upstream/4.2_20130725 created (now aa29f2c)
Graham Inggs
- [tbb] annotated tag upstream/4.2_20140122 created (now 95332a5)
Graham Inggs
- [tbb] annotated tag upstream/4.3_20150611 created (now 47b5646)
Graham Inggs
- [tbb] branch master updated (e7a8224 -> a145980)
Nico Schlömer
- [tbb] branch master updated (a145980 -> 95da3e7)
Nico Schlömer
- [bibutils] branch master updated (61fe1d1 -> a35d638)
David Bremner
- [sketch] branch master updated (3c3d588 -> f84cc09)
David Bremner
- [sketch] annotated tag debian/0.3.7-4 created (now 75a4bb5)
David Bremner
- [lrslib] branch master updated (e456251 -> 81a2dc6)
David Bremner
- [python-escript] branch debian updated (6f58a7e -> bc1ec20)
Anton Gladky
- [python-escript] annotated tag debian/5.0-4 created (now 59f8499)
Anton Gladky
- [sagemath] branch master updated (7182fbb -> 67d9d63)
Ximin Luo
- [ros-catkin-pkg] branch master updated (93361d3 -> 5e19c3c)
Jochen Sprickerhof
- [ros-catkin-pkg] annotated tag debian/0.3.5-3 created (now cb10cb2)
Jochen Sprickerhof
- [sagemath] branch master updated (67d9d63 -> 2af9c75)
Ximin Luo
- [linbox] branch master updated (f3c6e63 -> d8093a0)
Doug Torrance
- [fflas-ffpack] branch master updated (293d0e2 -> 42dafc3)
Doug Torrance
- [givaro] branch master updated (a1cffb7 -> d58ae87)
Doug Torrance
- [vspline] branch master updated (c6ff64c -> 620c330)
Kay F. Jahnke
- [caffe-contrib] annotated tag debian/1.0.0-2 created (now a19d03e)
Zhou Mo
- [caffe-contrib] branch master updated (0ef47f3 -> c7d42fa)
Zhou Mo
- [lapack] branch master updated (a9b35df -> 4b619b6)
Sébastien Villemot
- [lapack] annotated tag debian/3.7.1-1 created (now bc38a2a)
Sébastien Villemot
- [atlas] branch master updated (94dcafe -> d5cf6af)
Sébastien Villemot
- [suitesparse] branch master updated (22fe9fb -> fdcce52)
Sébastien Villemot
- [glpk-java] branch master updated (58c4e04 -> 39810ee)
Sébastien Villemot
- [glpk-java] branch pristine-tar updated (df3f6df -> ecc36c8)
Sébastien Villemot
- [glpk-java] annotated tag debian/1.9.0-1 created (now 116d774)
Sébastien Villemot
- [glpk-java] annotated tag upstream/1.9.0 created (now 4b47a35)
Sébastien Villemot
- [giac] branch master updated (13c6057 -> 9ae75a7)
Ximin Luo
- [giac] branch _volatile_rc deleted (was 788e720)
Ximin Luo
- [lrslib] branch master updated (81a2dc6 -> 8722ff0)
David Bremner
- [lrslib] annotated tag debian/0.62-2 created (now 8faa74a)
David Bremner
- [caffe] branch pristine-tar updated (c5b6a59 -> b1752cf)
Zhou Mo
- [giac] branch master updated (9ae75a7 -> 7b0795e)
Ximin Luo
- [bibutils] branch master updated (a35d638 -> 671085b)
David Bremner
- [bibutils] branch pristine-tar updated (18ae57e -> bd243c7)
David Bremner
- [bibutils] annotated tag debian/6.0-1 created (now 77224ea)
David Bremner
- [bibutils] annotated tag upstream/6.0 created (now fa48b48)
David Bremner
- [ros-catkin] branch master updated (435b359 -> c64dc5a)
Jochen Sprickerhof
- [ros-catkin] annotated tag debian/0.7.6-1 created (now c69c4b6)
Jochen Sprickerhof
- [ros-catkin] annotated tag upstream/0.7.6 created (now b008ab6)
Jochen Sprickerhof
- [sagemath] branch master updated (2af9c75 -> 30eda52)
Ximin Luo
- [sagemath] branch master updated (30eda52 -> 6b35389)
Ximin Luo
- [sagemath] branch master updated (6b35389 -> 0fd5508)
Ximin Luo
- [sagemath] branch master updated (0fd5508 -> 353e81b)
Ximin Luo
- [sagemath] branch master updated (353e81b -> c02ec11)
Ximin Luo
- [sagemath] branch master updated (c02ec11 -> ee3c815)
Ximin Luo
- [vtk6] branch master updated (0b6a77b -> a26f459)
Gert Wollny
- [vtk6] branch vtk6 created (now cf55b63)
Gert Wollny
- [vtk6] tag debian/6.3.0+dfsg1-2.1 created (now 4b2f736)
Gert Wollny
- [vtk6] tag debian/6.3.0+dfsg1-6 created (now 6d69b3d)
Gert Wollny
- [sagemath] branch master updated (ee3c815 -> eda7602)
Ximin Luo
- [vtk6] branch master updated (a26f459 -> 1452455)
Anton Gladky
- [vtk6] annotated tag debian/6.3.0+dfsg1-7 created (now e645104)
Anton Gladky
- [opencv] branch master updated (634c813 -> 3d8eae5)
Nobuhiro Iwamatsu
- [opencv] branch master updated (3d8eae5 -> df1ba63)
Nobuhiro Iwamatsu
- [dolfin] tag debian/2016.2.0-5 created (now 534ca3b)
Drew Parsons
- [dolfin] branch master updated (a8a2c7d -> 534ca3b)
Drew Parsons
- [tensorflow] branch master created (now f9a48b9)
Zhou Mo
- [tensorflow] branch pristine-tar created (now c534536)
Zhou Mo
- [tensorflow] annotated tag upstream/1.2.1 created (now 857a35c)
Zhou Mo
- [fiat] branch experimental updated (c7244b3 -> e97700c)
Johannes Ring
- [fiat] annotated tag debian/2017.1.0-1 created (now 2a4c03b)
Johannes Ring
- [instant] branch experimental updated (33ba771 -> 3917532)
Johannes Ring
- [instant] annotated tag debian/2017.1.0-1 created (now b99b9bb)
Johannes Ring
- [ufl] branch experimental updated (2419cd7 -> 8df6fd5)
Johannes Ring
- [ufl] annotated tag debian/2017.1.0-1 created (now 77d3846)
Johannes Ring
- [ffc] branch experimental updated (b188b39 -> 1b9f27c)
Johannes Ring
- [ffc] annotated tag debian/2017.1.0-1 created (now 365e6fc)
Johannes Ring
- [ros-cmake-modules] branch master updated (3cb1ff1 -> c1c9142)
Jochen Sprickerhof
- [ros-cmake-modules] branch pristine-tar updated (43db300 -> 1b8602e)
Jochen Sprickerhof
- [ros-cmake-modules] annotated tag upstream/0.4.1 created (now 9f8076d)
Jochen Sprickerhof
- [mpich] branch master updated (73674c4 -> fa1de3c)
Alastair McKinstry
- [vtk6] branch master updated (1452455 -> 6ca771c)
Anton Gladky
- [vtk6] annotated tag debian/6.3.0+dfsg1-8 created (now 01c4c6e)
Anton Gladky
- [ros-genpy] branch master updated (5b22ad0 -> 7de8ec7)
Jochen Sprickerhof
- [ros-genpy] annotated tag debian/0.6.3-2 created (now 0e98e0f)
Jochen Sprickerhof
- [ros-genpy] annotated tag debian/0.6.5-1 created (now 8eb9ca4)
Jochen Sprickerhof
- [ros-genpy] annotated tag upstream/0.6.5 created (now 2b0a2f0)
Jochen Sprickerhof
- [dolfin] branch experimental updated (4415ce1 -> 3286e0e)
Johannes Ring
- [dolfin] annotated tag debian/2017.1.0-1 created (now f79fe3b)
Johannes Ring
- [vtk6] branch master updated (6ca771c -> 363ac5b)
Gert Wollny
- [vtk6] branch strip-bindings created (now 6ca771c)
Gert Wollny
- [vtk6] annotated tag debian/6.3.0+dfsg1-9 created (now 7fd38f2)
Gert Wollny
- [scalapack] branch experimental created (now d72e845)
Drew Parsons
- [scalapack] branch pristine-tar updated (e600cad -> 07e74f7)
Drew Parsons
- [scalapack] annotated tag upstream/2.0.2 created (now aa1b92a)
Drew Parsons
- [scalapack] branch experimental updated (d72e845 -> 9894d77)
Drew Parsons
- [alglib] branch experimental updated (61c72d8 -> 88f03f6)
Anton Gladky
- [alglib] annotated tag debian/3.11.0-1_exp2 created (now 20171b2)
Anton Gladky
- [ros-roscpp-core] branch master updated (484ff0a -> 1b177aa)
Jochen Sprickerhof
- [ros-roscpp-core] annotated tag debian/0.6.4-1 created (now d95c83c)
Jochen Sprickerhof
- [ros-roscpp-core] annotated tag upstream/0.6.4 created (now 56406d8)
Jochen Sprickerhof
- [lapack] branch master updated (4b619b6 -> 913c37a)
Sébastien Villemot
- [gf2x] branch master updated (df0cf5b -> e50c587)
Julien Puydt
- [gf2x] branch pristine-tar updated (686f057 -> 11d31f4)
Julien Puydt
- [gf2x] annotated tag upstream/1.2 created (now 4deff20)
Julien Puydt
- r47459 - /packages/nlopt/trunk/debian/rules
sk-guest at users.alioth.debian.org
- r47460 - /packages/nlopt/trunk/debian/control
sk-guest at users.alioth.debian.org
- r47461 - /packages/nlopt/trunk/debian/control
sk-guest at users.alioth.debian.org
- r47462 - /packages/nlopt/trunk/debian/patches/spelling-fixes.patch
sk-guest at users.alioth.debian.org
- [nlopt] branch master updated (3e7fa4d -> 2733fc0)
Sergey Kirpichev
- [scalapack] branch experimental updated (9894d77 -> 37cd8bd)
Drew Parsons
- [scalapack] branch experimental updated (37cd8bd -> 9c104cb)
Drew Parsons
- [scalapack] branch experimental updated (9c104cb -> 5694df2)
Drew Parsons
- [scalapack] branch experimental updated (5694df2 -> 4ffbef0)
Drew Parsons
- [scalapack] branch experimental updated (4ffbef0 -> b5083be)
Drew Parsons
- [nlopt] branch master updated (2733fc0 -> 20ad530)
Sergey Kirpichev
- [nlopt] annotated tag debian/2.4.2+dfsg-3 created (now 9d46cd7)
Sergey Kirpichev
- [scalapack] tag debian/2.0.2-1exp1 created (now 343dad1)
Drew Parsons
- [scalapack] branch experimental updated (b5083be -> 343dad1)
Drew Parsons
- [scalapack] tag debian/2.0.2-1exp2 created (now 3830287)
Drew Parsons
- [scalapack] branch experimental updated (343dad1 -> 3830287)
Drew Parsons
- [vtk7] branch master created (now bbbf678)
Gert Wollny
- [vtk7] branch pristine-tar created (now ea16b68)
Gert Wollny
- [vtk7] branch master updated (bbbf678 -> 45bb80f)
Gert Wollny
- [vtk7] branch master updated (45bb80f -> bf37e5f)
Gert Wollny
- [xtensor] branch master updated (19aed4c -> 8cc82ba)
Ghislain Vaillant
- [xtensor] branch pristine-tar updated (503a7aa -> ae20643)
Ghislain Vaillant
- [xtensor-python] branch master updated (4fedbf6 -> cb31845)
Ghislain Vaillant
- [xtensor-python] annotated tag debian/0.12.1-2 created (now 25deb05)
Ghislain Vaillant
- [xtensor] annotated tag debian/0.10.6-1 created (now bfaa275)
Ghislain Vaillant
- [xtensor] annotated tag upstream/0.10.6 created (now 62c1d89)
Ghislain Vaillant
- [ros-std-msgs] branch master updated (6d21bce -> b5601fe)
Jochen Sprickerhof
- [ros-std-msgs] annotated tag debian/0.5.11-1 created (now 8ebda1f)
Jochen Sprickerhof
- [ros-std-msgs] annotated tag upstream/0.5.11 created (now 95b39bf)
Jochen Sprickerhof
- [ros-cmake-modules] annotated tag debian/0.4.1-1 created (now 93d99eb)
Jochen Sprickerhof
- [plplot] branch master created (now 6542f2e)
Ole Streicher
- [plplot] branch pristine-tar created (now 75c2a40)
Ole Streicher
- [plplot] annotated tag debian/4.99j-11 created (now 1dd0494)
Ole Streicher
- [plplot] annotated tag debian/4.99j-8 created (now 06b95d7)
Ole Streicher
- [plplot] annotated tag debian/5.10.0+dfsg-1 created (now 49ec6a0)
Ole Streicher
- [plplot] annotated tag debian/5.10.0+dfsg2-0.1 created (now ecca1a2)
Ole Streicher
- [plplot] annotated tag debian/5.10.0+dfsg2-0.2 created (now adbdc6a)
Ole Streicher
- [plplot] annotated tag debian/5.10.0+dfsg2-0.3 created (now 857ee46)
Ole Streicher
- [plplot] annotated tag debian/5.10.0+dfsg2-0.4 created (now 696fc9a)
Ole Streicher
- [plplot] annotated tag debian/5.10.0-0.1 created (now 2785558)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-2 created (now 7ec227b)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-3 created (now 07e29df)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-10 created (now 675afe1)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-11 created (now abd92f8)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-4 created (now 66dd07b)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-5 created (now 0e3f75d)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-6 created (now 7a255c3)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-7 created (now 084d6a6)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-8 created (now b72c676)
Ole Streicher
- [plplot] annotated tag debian/5.3.1-9 created (now 462abaa)
Ole Streicher
- [plplot] annotated tag debian/5.5.3-1 created (now a5349e9)
Ole Streicher
- [plplot] annotated tag debian/5.6.0-1 created (now 19daca9)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-1 created (now 1a28fb7)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-10 created (now af2d20f)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-11 created (now 139aed1)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-12 created (now 7d59c2c)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-2 created (now a40a294)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-3 created (now a719b9d)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-4 created (now 033383c)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-5 created (now e47f108)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-6 created (now e9649a5)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-7 created (now ced464d)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-8 created (now d1b0bc4)
Ole Streicher
- [plplot] annotated tag debian/5.6.1-9 created (now ac4aeb7)
Ole Streicher
- [plplot] annotated tag debian/5.8.0-1 created (now 3a28caf)
Ole Streicher
- [plplot] annotated tag debian/5.8.0-2 created (now b19975c)
Ole Streicher
- [plplot] annotated tag debian/5.8.0-3 created (now 6e1fa68)
Ole Streicher
- [plplot] annotated tag debian/5.8.0-4 created (now e2fd0cb)
Ole Streicher
- [plplot] annotated tag debian/5.8.0-5 created (now 960030d)
Ole Streicher
- [plplot] annotated tag debian/5.8.0-6 created (now c0898fa)
Ole Streicher
- [plplot] annotated tag debian/5.8.0_RC1-1 created (now 456d6c6)
Ole Streicher
- [plplot] annotated tag debian/5.8.0_RC1-2 created (now 386a80e)
Ole Streicher
- [plplot] annotated tag debian/5.8.0_RC1-3 created (now 0fdef06)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-1 created (now 9e8e0ea)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-2 created (now 6737a46)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-3 created (now 39a17e4)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-4 created (now 2201028)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-5 created (now abe64d1)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-6 created (now 2182106)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-7 created (now 2c13d59)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-8 created (now 8bc13df)
Ole Streicher
- [plplot] annotated tag debian/5.9.0-8+kbsd created (now daa8ccf)
Ole Streicher
- [plplot] annotated tag debian/5.9.2-1 created (now a9d4e70)
Ole Streicher
- [plplot] annotated tag debian/5.9.2-2 created (now 56f03dd)
Ole Streicher
- [plplot] annotated tag debian/5.9.2-3 created (now 797258f)
Ole Streicher
- [plplot] annotated tag debian/5.9.5-2 created (now 6dc54d5)
Ole Streicher
- [plplot] annotated tag debian/5.9.5-3 created (now 32a44bc)
Ole Streicher
- [plplot] annotated tag debian/5.9.5-4 created (now 1fc5453)
Ole Streicher
- [plplot] annotated tag debian/5.9.8-1 created (now 6ffae36)
Ole Streicher
- [plplot] annotated tag debian/5.9.8-2 created (now 8c14d8b)
Ole Streicher
- [plplot] annotated tag debian/5.9.9-1 created (now 10d5b41)
Ole Streicher
- [plplot] annotated tag debian/5.9.9-2 created (now 0477d7a)
Ole Streicher
- [plplot] annotated tag debian/5.9.9-3 created (now a2d22ac)
Ole Streicher
- [plplot] annotated tag debian/5.9.9-4 created (now 3d788f5)
Ole Streicher
- [plplot] annotated tag debian/5.9.9-5 created (now 950f895)
Ole Streicher
- [plplot] annotated tag upstream/4.99j created (now 4764a7b)
Ole Streicher
- [plplot] annotated tag upstream/5.10.0 created (now 4508e76)
Ole Streicher
- [plplot] annotated tag upstream/5.10.0+dfsg created (now f10613c)
Ole Streicher
- [plplot] annotated tag upstream/5.10.0+dfsg2 created (now bced4ad)
Ole Streicher
- [plplot] annotated tag upstream/5.12.0+dfsg created (now 0ec5891)
Ole Streicher
- [plplot] annotated tag upstream/5.3.1 created (now 4da2d35)
Ole Streicher
- [plplot] annotated tag upstream/5.5.3 created (now fe644d1)
Ole Streicher
- [plplot] annotated tag upstream/5.6.0 created (now a390c3e)
Ole Streicher
- [plplot] annotated tag upstream/5.6.1 created (now b818f81)
Ole Streicher
- [plplot] annotated tag upstream/5.8.0 created (now a24b987)
Ole Streicher
- [plplot] annotated tag upstream/5.8.0_RC1 created (now 226343d)
Ole Streicher
- [plplot] annotated tag upstream/5.9.0 created (now 8be03c6)
Ole Streicher
- [plplot] annotated tag upstream/5.9.2 created (now 3addb81)
Ole Streicher
- [plplot] annotated tag upstream/5.9.5 created (now 66ed9a6)
Ole Streicher
- [plplot] annotated tag upstream/5.9.8 created (now 7541cba)
Ole Streicher
- [plplot] annotated tag upstream/5.9.9 created (now bbb4d86)
Ole Streicher
- [plplot] branch master updated (6542f2e -> 4de1374)
Ole Streicher
- [r-cran-nleqslv] branch master updated (15bad48 -> 256180c)
Sébastien Villemot
- [r-cran-nleqslv] branch pristine-tar updated (6977ebe -> 495374a)
Sébastien Villemot
- [r-cran-nleqslv] annotated tag debian/3.3.1-1 created (now 3133c01)
Sébastien Villemot
- [r-cran-nleqslv] annotated tag upstream/3.3.1 created (now e0d08c3)
Sébastien Villemot
- [cminpack] branch master updated (2c74708 -> 1a8d483)
Ole Streicher
- [cminpack] annotated tag debian/1.3.6-2 created (now e3496c0)
Ole Streicher
- [adios] branch debian/master updated (4fbb468 -> 38b4c53)
Alastair McKinstry
- [pygrib] branch debian/master created (now dfb05ee)
Alastair McKinstry
- [pygrib] tag debian/2.0.2-1 created (now dfb05ee)
Alastair McKinstry
- [pygrib] tag upstream/2.0.2 created (now 807db21)
Alastair McKinstry
- [ros-common-msgs] branch master updated (5b18367 -> d55a4c4)
Jochen Sprickerhof
- [ros-common-msgs] annotated tag debian/1.12.5-3 created (now c452666)
Jochen Sprickerhof
- [vtk7] branch master updated (bf37e5f -> ac0419c)
Gert Wollny
- [vtk7] branch master updated (ac0419c -> 29ae4bd)
Gert Wollny
- [vtk7] branch master updated (29ae4bd -> 40ec6e9)
Gert Wollny
- [vtk6] branch master updated (363ac5b -> 419df6d)
Gert Wollny
- [vtk6] annotated tag debian/6.3.0+dfsg1-10 created (now 1cb4d97)
Gert Wollny
- [flint-arb] branch master updated (64b38f5 -> ff3dfdb)
Julien Puydt
- [flint-arb] branch pristine-tar updated (66ec74e -> 17e092e)
Julien Puydt
- [flint-arb] annotated tag upstream/2.11.1 created (now 03daa2f)
Julien Puydt
- [vtk7] branch master created (now cac1f70)
Gert Wollny
- [vtk7] branch pristine-tar created (now db9f0f7)
Gert Wollny
- [fflas-ffpack] branch master updated (42dafc3 -> be3e4ca)
Doug Torrance
- [pyzo] branch debian/master updated (ece57d3 -> 65b69ff)
Ghislain Vaillant
- [pyzo] branch pristine-tar updated (8fcd0aa -> 9765c8b)
Ghislain Vaillant
- [pyzo] annotated tag debian/4.4.0-1 created (now e9073cb)
Ghislain Vaillant
- [pyzo] annotated tag upstream/4.4.0 created (now d33bed7)
Ghislain Vaillant
- [xtensor] branch master updated (8cc82ba -> d4f6959)
Ghislain Vaillant
- [xtensor] branch pristine-tar updated (ae20643 -> 9158523)
Ghislain Vaillant
- [xtensor] annotated tag debian/0.10.7-1 created (now 67526c1)
Ghislain Vaillant
- [xtensor] annotated tag upstream/0.10.7 created (now 58701ee)
Ghislain Vaillant
- [alglib] branch experimental updated (88f03f6 -> 06d3d4d)
Anton Gladky
- [alglib] annotated tag debian/3.11.0-1_exp3 created (now bd094ca)
Anton Gladky
- [ros-ros-comm-msgs] branch master updated (24ae4b5 -> 987faf9)
Jochen Sprickerhof
- [ros-ros-comm-msgs] annotated tag debian/1.11.2-6 created (now 18894bc)
Jochen Sprickerhof
- [cvc4] branch master updated (d668c63 -> 80a6dad)
Fabian Wolff
- [cvc4] branch pristine-tar updated (77d828b -> 159b073)
Fabian Wolff
- [plplot] branch master updated (4de1374 -> 0ed28a6)
Ole Streicher
- [alglib] branch experimental updated (06d3d4d -> 90717ca)
Anton Gladky
- [alglib] annotated tag debian/3.11.0-1_exp4 created (now 0030d82)
Anton Gladky
- [plplot] branch master updated (0ed28a6 -> 542d2be)
Ole Streicher
- [vtk7] branch master updated (cac1f70 -> 7f55a0b)
Nico Schlömer
- [plplot] branch master updated (542d2be -> 4308f88)
Ole Streicher
- [vtk7] branch master updated (7f55a0b -> b27b4a1)
Gert Wollny
- [vtk7] branch myp3 created (now 6e8279f)
Gert Wollny
- [vtk7] annotated tag debian/7.1.1+dfsg1-1_exp1 created (now 8f14381)
Gert Wollny
- [vtk7] annotated tag upstream/7.1.1+dfsg1 created (now bf43a41)
Gert Wollny
- [ros-rospack] branch master updated (4f94c47 -> 53535ef)
Jochen Sprickerhof
- [ros-rospack] branch patch-queue/master created (now ee6f522)
Jochen Sprickerhof
- [ros-rospack] annotated tag debian/2.4.1-1 created (now cfc9dc9)
Jochen Sprickerhof
- [ros-rospack] annotated tag upstream/2.4.1 created (now 42d1297)
Jochen Sprickerhof
- [ros-rospack] branch patch-queue/master deleted (was ee6f522)
Jochen Sprickerhof
- [ros-rospack] branch master updated (53535ef -> 1ad05ff)
Jochen Sprickerhof
- [ppl] branch master updated (609d902 -> cdb19fb)
David Bremner
- [ppl] annotated tag debian/1%1.2-2 created (now ab5ac84)
David Bremner
- [plplot] branch master updated (4308f88 -> 7ba1f49)
Ole Streicher
- [plplot] branch master updated (7ba1f49 -> 55adc89)
Ole Streicher
- [plplot] branch master updated (55adc89 -> 1e669c9)
Ole Streicher
- [qrouter] branch master updated (3f0c28c -> 76e9fbe)
Ruben Undheim
- [qrouter] branch pristine-tar updated (5add484 -> 3e4c543)
Ruben Undheim
- [qrouter] tag debian/1.3.80-1 created (now 76e9fbe)
Ruben Undheim
- [qrouter] tag upstream/1.3.80 created (now 1fdeebd)
Ruben Undheim
- [qflow] branch master updated (77285b4 -> 7f39981)
Ruben Undheim
- [qflow] branch pristine-tar updated (c35d680 -> a5d6585)
Ruben Undheim
- [qflow] tag debian/1.1.58-1 created (now 7f39981)
Ruben Undheim
- [qflow] tag upstream/1.1.58 created (now 6bfa88a)
Ruben Undheim
- [plplot] branch master updated (1e669c9 -> 7f33c43)
Ole Streicher
- [osmo-trx] branch master updated (ad39539 -> b48c1a4)
Ruben Undheim
- [osmo-trx] tag debian/0_20170323git2af1440+dfsg-1 created (now b48c1a4)
Ruben Undheim
- [fpga-icestorm] branch pristine-tar updated (7d0536f -> 696fce7)
Ruben Undheim
- [fpga-icestorm] tag upstream/0_20170705git3c42bdb created (now 3c42bdb)
Ruben Undheim
- [fpga-icestorm] branch master updated (0533792 -> 61ee2ea)
Ruben Undheim
- [plplot] branch enable_d created (now 9547dec)
Ole Streicher
- [plplot] branch enable_octave created (now 652a2bc)
Ole Streicher
- [reprounzip] branch master updated (4d70263 -> 23813b5)
Ghislain Vaillant
- [reprounzip] branch pristine-tar updated (6dc873a -> fba8e4e)
Ghislain Vaillant
- [reprounzip] annotated tag debian/1.0.10-1 created (now 096a20a)
Ghislain Vaillant
- [reprounzip] annotated tag upstream/1.0.10 created (now 6f9cbd6)
Ghislain Vaillant
- [reprozip] branch master updated (937dd12 -> 789b30e)
Ghislain Vaillant
- [reprozip] branch pristine-tar updated (bd41616 -> 1b2f9bf)
Ghislain Vaillant
- [reprozip] annotated tag debian/1.0.10-1 created (now 0c2f1b0)
Ghislain Vaillant
- [reprozip] annotated tag upstream/1.0.10 created (now 8567aef)
Ghislain Vaillant
- [mumps] branch master updated (5e1b873 -> 9e32155)
Drew Parsons
- [petsc] branch master updated (d263f51 -> 7d0d717)
Drew Parsons
- [python-ltfatpy] branch master updated (5e35446 -> f720145)
Ghislain Vaillant
- [python-ltfatpy] branch pristine-tar updated (d463fe1 -> 279ab88)
Ghislain Vaillant
- [python-ltfatpy] annotated tag debian/1.0.9-1 created (now acd2feb)
Ghislain Vaillant
- [python-ltfatpy] annotated tag upstream/1.0.9 created (now 1552aed)
Ghislain Vaillant
- [ros-image-pipeline] branch master created (now c2415af)
Leopold Palomo-Avellaneda
- [ros-image-pipeline] branch pristine-tar created (now 33fbfc1)
Leopold Palomo-Avellaneda
- [ros-image-pipeline] branch master updated (c2415af -> ccd5fab)
Leopold Palomo-Avellaneda
- [ros-filters] branch master updated (c7c86a8 -> 630eb1c)
Leopold Palomo-Avellaneda
- [ros-filters] branch pristine-tar updated (6c7d1e9 -> 3f9710c)
Leopold Palomo-Avellaneda
- [opencv] branch master updated (df1ba63 -> 6340e94)
Mattia Rizzolo
- [python-ltfatpy] branch master updated (f720145 -> 2f4e202)
Gianfranco Costamagna
- [python-ltfatpy] annotated tag debian/1.0.9-1 updated (acd2feb -> da24b8b)
Gianfranco Costamagna
- [pyzo] branch debian/master updated (65b69ff -> daf8dac)
Ghislain Vaillant
- [pyzo] branch pristine-tar updated (9765c8b -> 92dcb04)
Ghislain Vaillant
- [pyzo] annotated tag debian/4.4.1-1 created (now 4309682)
Ghislain Vaillant
- [pyzo] annotated tag upstream/4.4.1 created (now 123529f)
Ghislain Vaillant
- [ros-rosdistro] branch master updated (76632e3 -> d4f4f91)
Jochen Sprickerhof
- [ros-rosdistro] annotated tag debian/0.6.2-2 created (now 1c6d92d)
Jochen Sprickerhof
- [ros-rosdistro] branch python3 deleted (was bea0cb3)
Jochen Sprickerhof
- [alglib] branch master updated (237cd4f -> 32f4fc9)
Anton Gladky
- [alglib] annotated tag debian/3.11.0-1 created (now 08b3742)
Anton Gladky
- [ros-vcstools] branch master updated (9e162b0 -> e9f613e)
Jochen Sprickerhof
- [ros-vcstools] annotated tag debian/0.1.39-3 created (now df5f40a)
Jochen Sprickerhof
- [opencv] annotated tag 3.3.0-rc created (now 818ecf7)
Nobuhiro Iwamatsu
- [petsc] tag debian/3.7.6+dfsg1-2 created (now 233d7cc)
Drew Parsons
- [petsc] branch master updated (7d0d717 -> 233d7cc)
Drew Parsons
- [ros-rosinstall-generator] branch master updated (f164dfa -> 34de5ad)
Jochen Sprickerhof
- [ros-rosinstall-generator] annotated tag debian/0.1.13-3 created (now d89aac7)
Jochen Sprickerhof
- [ros-rospkg] branch master updated (4ee280b -> f064faa)
Jochen Sprickerhof
- [ros-rospkg] annotated tag debian/1.1.1-1 created (now 0af3498)
Jochen Sprickerhof
- [ros-rospkg] annotated tag upstream/1.1.1 created (now 3848ff8)
Jochen Sprickerhof
- [ros-rospkg] branch python3 deleted (was 6a7dc39)
Jochen Sprickerhof
- [ros-vcstools] branch python3 deleted (was 50e6f46)
Jochen Sprickerhof
- [ros-rosinstall-generator] branch python3 deleted (was e3f13f3)
Jochen Sprickerhof
- [imglib2] branch master created (now b3322d4)
Ghislain Vaillant
- [imglib2] branch pristine-tar created (now 6a591b6)
Ghislain Vaillant
- [imglib2] annotated tag debian/4.3.0-1 created (now 4c7c8f7)
Ghislain Vaillant
- [imglib2] annotated tag upstream/4.3.0 created (now 6a425e9)
Ghislain Vaillant
- [parsington] branch master created (now 202111e)
Ghislain Vaillant
- [parsington] branch pristine-tar created (now b475ed7)
Ghislain Vaillant
- [parsington] annotated tag debian/1.0.1-1 created (now 5d27124)
Ghislain Vaillant
- [parsington] annotated tag upstream/1.0.1 created (now 9f7f3e1)
Ghislain Vaillant
- [plplot] branch master updated (7f33c43 -> 8737d65)
Ole Streicher
- [admesh] branch master updated (3e26830 -> dc0364d)
Anton Gladky
- [admesh] annotated tag debian/0.98.3-1 created (now 2d8bd98)
Anton Gladky
- [slepc] tag debian/3.7.4+dfsg1-2 created (now 5d0bcab)
Drew Parsons
- [slepc] branch master updated (b1f3424 -> 5d0bcab)
Drew Parsons
- [plplot] branch master updated (8737d65 -> 809e7b4)
Ole Streicher
- [arpack++] branch master updated (d66dcc1 -> f05680e)
Anton Gladky
- [arpack++] annotated tag debian/2.3-7 created (now c498437)
Anton Gladky
- [ros-ros] branch master updated (30fa28d -> f7f7ccd)
Jochen Sprickerhof
- [ros-ros] annotated tag debian/1.14.0-1 created (now 0ced0d7)
Jochen Sprickerhof
- [ros-ros] annotated tag upstream/1.14.0 created (now 97c16f6)
Jochen Sprickerhof
- [plplot] branch master updated (809e7b4 -> 503a076)
Ole Streicher
- [numba] branch master updated (0d0159b -> 73e3969)
Daniel Stender
- [numba] branch pristine-tar updated (aa6761b -> f6abcd8)
Daniel Stender
- r47463 - in /packages/inventor/trunk/debian: changelog patches/dont-use-FT_Done_GlyphSlot.patch patches/series
smr at users.alioth.debian.org
- r47464 - in /packages/inventor/trunk/debian: changelog rules
smr at users.alioth.debian.org
- r47465 - /packages/inventor/trunk/debian/changelog
smr at users.alioth.debian.org
- [sundials] branch master updated (6a51040 -> 10a52f0)
James Tocknell
- [dune-common] branch master updated (c896858 -> 62c6331)
Ansgar Burchardt
- [dune-functions] branch master updated (d40a87b -> f7c7826)
Ansgar Burchardt
- [dune-geometry] branch master updated (33e419e -> ce37eea)
Ansgar Burchardt
- [dune-grid] branch master updated (b816fb7 -> 9c047a8)
Ansgar Burchardt
- [dune-istl] branch master updated (3fa16f5 -> cb70ed4)
Ansgar Burchardt
- [dune-localfunctions] branch master updated (cba5c67 -> a7a55d5)
Ansgar Burchardt
- [dune-typetree] branch master updated (e1e1c71 -> 669828d)
Ansgar Burchardt
- [dune-pdelab] branch master updated (e502da4 -> d03328c)
Ansgar Burchardt
- [ros-wstool] branch master updated (8c57fa7 -> 7a993ce)
Jochen Sprickerhof
- [ros-wstool] annotated tag debian/0.1.13-2 created (now 898103e)
Jochen Sprickerhof
- [ros-image-pipeline] branch master updated (ccd5fab -> 2dda54e)
Leopold Palomo-Avellaneda
- [ros-image-pipeline] annotated tag upstream/1.12.20 created (now 363968e)
Leopold Palomo-Avellaneda
- [libgpuarray] branch master created (now c9014fd)
Ghislain Vaillant
- [libgpuarray] branch pristine-tar created (now e85fbc3)
Ghislain Vaillant
- [libgpuarray] annotated tag debian/0.0+git160929.29ce960-1 created (now be0e41c)
Ghislain Vaillant
- [libgpuarray] annotated tag upstream/0.0+git160929.29ce960 created (now 8f408c5)
Ghislain Vaillant
- [libgpuarray] annotated tag upstream/0.6.8 created (now c3383f8)
Ghislain Vaillant
- [libgpuarray] annotated tag debian/0.6.8-1 created (now 995d52c)
Ghislain Vaillant
- r47466 - in /packages/rheolef/trunk/debian: changelog control
ginggs at users.alioth.debian.org
- [ros-ros-controllers] branch pristine-tar created (now c3ecc1d)
Leopold Palomo-Avellaneda
- [ros-ros-controllers] branch master updated (9d78605 -> 31c6591)
Leopold Palomo-Avellaneda
- [numba] annotated tag debian/0.34.0-1 created (now cd0a2cc)
Daniel Stender
- [magics] tag debian/2.34.0-1 created (now 352c241)
Alastair McKinstry
- [magics] tag upstream/2.34.0 created (now 87e719d)
Alastair McKinstry
- [magics] tag upstream/2.34.1 created (now c74b73c)
Alastair McKinstry
- [magics] branch debian/master updated (9ecc3d2 -> d07dc33)
Alastair McKinstry
- [magics] branch debian/master updated (d07dc33 -> c9c8a9e)
Alastair McKinstry
- [esys-particle] branch master updated (c4c1948 -> e63c0d3)
Anton Gladky
- [esys-particle] annotated tag debian/2.3.5+dfsg1-1 created (now 24603de)
Anton Gladky
- [ros-catkin-pkg] branch master updated (5e19c3c -> a13fae2)
Jochen Sprickerhof
- [liggghts] branch master updated (c7bff95 -> 93ee0c7)
Anton Gladky
- [liggghts] branch pristine-tar updated (e2c1546 -> 5a697ac)
Anton Gladky
- [liggghts] annotated tag debian/3.7.0+repack1-1 created (now 19ec1d7)
Anton Gladky
- [liggghts] annotated tag upstream/3.7.0+repack1 created (now c71d723)
Anton Gladky
- [ros-wstool] branch master updated (7a993ce -> 7861c30)
Jochen Sprickerhof
- [ros-wstool] branch patch-queue/master created (now dd8cf36)
Jochen Sprickerhof
- [ros-wstool] annotated tag debian/0.1.13-3 created (now 94e973f)
Jochen Sprickerhof
- [udunits] tag debian/2.2.20-1 created (now d30bde4)
Alastair McKinstry
- [udunits] tag upstream/2.2.20 created (now 8a07b70)
Alastair McKinstry
- [udunits] tag upstream/2.2.25 created (now 0868f43)
Alastair McKinstry
- [dune-common] annotated tag debian/2.5.1-1 created (now 072ed3e)
Ansgar Burchardt
- [dune-common] branch master updated (62c6331 -> 110e002)
Ansgar Burchardt
- [dune-typetree] annotated tag debian/2.5.0-2 created (now ee8b604)
Ansgar Burchardt
- [dune-uggrid] annotated tag debian/2.5.1-1 created (now d5132a7)
Ansgar Burchardt
- [dune-typetree] branch master updated (669828d -> b8b5ab9)
Ansgar Burchardt
- [dune-uggrid] branch master updated (ac74207 -> 438945b)
Ansgar Burchardt
- [dune-istl] annotated tag debian/2.5.1-1 created (now e519b21)
Ansgar Burchardt
- [dune-istl] branch master updated (cb70ed4 -> fc5229e)
Ansgar Burchardt
- [dune-geometry] annotated tag debian/2.5.1-1 created (now 3ff67fd)
Ansgar Burchardt
- [dune-geometry] branch master updated (ce37eea -> 77f5967)
Ansgar Burchardt
- [ros-wstool] branch patch-queue/master deleted (was dd8cf36)
Jochen Sprickerhof
- [dune-localfunctions] annotated tag debian/2.5.1-1 created (now 9746759)
Ansgar Burchardt
- [dune-localfunctions] branch master updated (a7a55d5 -> 99a5432)
Ansgar Burchardt
- [dune-grid] annotated tag debian/2.5.1-1 created (now 623a3d3)
Ansgar Burchardt
- [dune-grid] branch master updated (9c047a8 -> 4eda637)
Ansgar Burchardt
- [apertium-is-sv] branch master updated (f9e9fc2 -> e7d103b)
Tino Didriksen
- [apertium-is-sv] branch pristine-tar updated (55038b4 -> 3f1352b)
Tino Didriksen
- [apertium-is-sv] annotated tag debian/0.1.0_r76450-1 created (now 4502f49)
Tino Didriksen
- [apertium-is-sv] annotated tag upstream/0.1.0_r76450 created (now 53f957d)
Tino Didriksen
- [apertium-is-sv] branch master updated (e7d103b -> 42497f6)
Tino Didriksen
- [apertium-hbs-mkd] branch master updated (44d6d78 -> 95fea14)
Tino Didriksen
- [apertium-hbs-mkd] branch pristine-tar updated (cd9cc61 -> 5321602)
Tino Didriksen
- [apertium-hbs-mkd] branch upstream updated (cf7281a -> 5689c87)
Tino Didriksen
- [apertium-hbs-mkd] annotated tag debian/0.1.0_r57554-1 created (now 59e21f9)
Tino Didriksen
- [apertium-hbs-mkd] annotated tag debian/0.1.0_r76450-1 created (now 7b5c627)
Tino Didriksen
- [apertium-hbs-mkd] annotated tag upstream/0.1.0_r76450 created (now 9ae10c6)
Tino Didriksen
- [ros-vcstools] branch master updated (e9f613e -> d6ee780)
Jochen Sprickerhof
- [ros-vcstools] annotated tag debian/0.1.39-4 created (now dcdcd61)
Jochen Sprickerhof
- [dune-grid-glue] annotated tag debian/2.5.0_20170717g2795723-1 created (now 4b7e3b3)
Ansgar Burchardt
- [dune-grid-glue] branch master updated (8368a2e -> 62bca7a)
Ansgar Burchardt
- [dune-functions] annotated tag debian/2.5.1-1 created (now 1bf1772)
Ansgar Burchardt
- [dune-functions] branch master updated (f7c7826 -> aed05e0)
Ansgar Burchardt
- [ros-rosinstall] branch master updated (0b118bd -> 3f3b865)
Jochen Sprickerhof
- [ros-rosinstall] annotated tag debian/0.7.7-4 created (now 32ad823)
Jochen Sprickerhof
- [ros-rosinstall] branch python3 deleted (was 8fe376a)
Jochen Sprickerhof
- [ros-rosdep] branch master updated (cb9d0cc -> 362b54b)
Jochen Sprickerhof
- [ros-rosdep] annotated tag debian/0.11.4-4 created (now 9f508b1)
Jochen Sprickerhof
- [ros-rosdep] branch python3 deleted (was db155e4)
Jochen Sprickerhof
- [ros-rosinstall] branch master updated (3f3b865 -> f127e41)
Jochen Sprickerhof
- [dune-pdelab] annotated tag debian/2.5.0_rc1-2 created (now 87826e1)
Ansgar Burchardt
- [dune-pdelab] branch master updated (d03328c -> a190db6)
Ansgar Burchardt
- [plplot] branch master updated (503a076 -> 5e4d3fe)
Ole Streicher
- [grads] tag 3%2.1.1.b0-1 created (now cff4ca1)
Alastair McKinstry
- [grads] tag upstream/2.1.1.b0 created (now 458ff7f)
Alastair McKinstry
- [adios] branch debian/master updated (38b4c53 -> 84fe379)
Alastair McKinstry
- [scalapack] tag experimental/2.0.2-1exp1 created (now 343dad1)
Drew Parsons
- [scalapack] tag debian/2.0.2-1exp1 deleted (was 343dad1)
Drew Parsons
- [scalapack] tag experimental/2.0.2-1exp2 created (now 3830287)
Drew Parsons
- [scalapack] tag debian/2.0.2-1exp2 deleted (was 3830287)
Drew Parsons
- [scalapack] tag experimental/2.0.2-1exp3 created (now d1143fe)
Drew Parsons
- [scalapack] branch experimental updated (3830287 -> d1143fe)
Drew Parsons
- [scalapack] branch experimental updated (d1143fe -> 60275bc)
Drew Parsons
- [cylc] branch debian/master updated (7c46ac9 -> b397567)
Alastair McKinstry
- [cylc] tag debian/6.11.2-5 created (now 10e78e1)
Alastair McKinstry
- [cylc] tag debian/6.11.2-6 created (now 941a638)
Alastair McKinstry
- [cylc] tag debian/6.11.2-7 created (now 267e02f)
Alastair McKinstry
- [cylc] tag upstream/6.11.2 created (now b08fa8e)
Alastair McKinstry
- [cylc] tag upstream/6.7.4 created (now 7babe6b)
Alastair McKinstry
- [cylc] tag upstream/7.2.1 created (now e003538)
Alastair McKinstry
- [cylc] tag upstream/7.4.0 created (now d03fabb)
Alastair McKinstry
- [plplot] branch master updated (5e4d3fe -> afedae7)
Ole Streicher
- [plplot] branch enable_octave deleted (was 652a2bc)
Ole Streicher
- [cvc4] annotated tag upstream/1.5 created (now 895a591)
Fabian Wolff
- [gnuplot] branch master updated (0e56d7a -> ea70f8c)
Anton Gladky
- [gnuplot] annotated tag debian/5.0.6+dfsg1-1 created (now 791ade6)
Anton Gladky
- [sagemath] branch master updated (eda7602 -> c2cb016)
Tobias Hansen
- [apertium-is-sv] branch master updated (42497f6 -> a4b478d)
Kartik Mistry
- [spyder] branch master updated (c8624a9 -> 6765230)
Ghislain Vaillant
- [spyder] annotated tag debian/3.1.4+dfsg1-1 created (now ffc4155)
Ghislain Vaillant
- [spyder] branch experimental deleted (was 0733d51)
Ghislain Vaillant
- [globjects] branch debian/master updated (1ec75e3 -> dca6c8a)
Ghislain Vaillant
- [globjects] annotated tag debian/1.1.0-2 created (now e5195ec)
Ghislain Vaillant
- [globjects] branch debian/experimental deleted (was e1b8815)
Ghislain Vaillant
- [libgpuarray] branch master updated (c9014fd -> c14ffbd)
Ghislain Vaillant
- [givaro] annotated tag debian/4.0.2-6 created (now e8adc24)
Tobias Hansen
- [fflas-ffpack] annotated tag debian/2.2.2-5 created (now ab807b3)
Tobias Hansen
- [giac] branch master updated (7b0795e -> a00abbd)
Ximin Luo
- [pybind11] branch master updated (8748f62 -> 7ee53ee)
Ghislain Vaillant
- [pybind11] annotated tag debian/2.0.1-4 created (now f051e23)
Ghislain Vaillant
- [pybind11] branch experimental updated (43f9b17 -> d1f939b)
Ghislain Vaillant
- [pybind11] branch pristine-tar updated (a20bed5 -> 44c7766)
Ghislain Vaillant
- [pybind11] annotated tag debian/2.1.1-1 created (now 8d345b7)
Ghislain Vaillant
- [pybind11] annotated tag upstream/2.1.1 created (now ca8762f)
Ghislain Vaillant
- [petsc] branch master updated (233d7cc -> aba34e3)
Drew Parsons
- [apertium-hbs-mkd] branch master updated (95fea14 -> 9bea04d)
Kartik Mistry
- [linbox] annotated tag debian/1.4.2-4 created (now d27b669)
Tobias Hansen
- [pybtex] 01/108: Creating trunk directory
Daniel Stender
- [pybtex] 08/108: In order not to confuse lintian, binary-arch is a separate target
Daniel Stender
- [pybtex] 07/108: Explicitly mark phony targets.
Daniel Stender
- [pybtex] branch master created (now 120c72f)
Daniel Stender
- [pybtex] 03/108: New upstream release.
Daniel Stender
- [pybtex] 05/108: pybliographer will be fixed in 1.2.12-3.1.
Daniel Stender
- [pybtex] 04/108: New upstream release.
Daniel Stender
- [pybtex] 06/108: Architecture: all
Daniel Stender
- [pybtex] 02/108: [svn-inject] Applying Debian modifications to trunk
Daniel Stender
- [pybtex] 09/108: database/convert/__main__.py is GPL-2+.
Daniel Stender
- [pybtex] 10/108: Build-depend on elinks-lite | elinks.
Daniel Stender
- [pybtex] 11/108: s/UNRELEASED/unstable/
Daniel Stender
- [pybtex] 12/108: Don't remove alternatives in prerm/upgrade.
Daniel Stender
- [pybtex] 13/108: Install alternative for /usr/bin/bibtex. Break TeX Live packages that installed this file.
Daniel Stender
- [pybtex] 14/108: Update debian/copyright in accordance to the latest DEP-5 version.
Daniel Stender
- [pybtex] 15/108: * Switch to source format 3.0 (quilt). * Make tests/run_bibtex.py compatible with Python 2.5. * Run unit-tests at build time.
Daniel Stender
- [pybtex] 16/108: Replace Breaks with Conflicts.
Daniel Stender
- [pybtex] 17/108: Use curly quotes in debian/copyright.
Daniel Stender
- [pybtex] 18/108: Closes #560376.
Daniel Stender
- [pybtex] 19/108: Lower priority for /usr/bin/bibtex alternative.
Daniel Stender
- [pybtex] 20/108: s/UNRELEASED/unstable/
Daniel Stender
- [pybtex] 21/108: Bump standards version to 3.8.4 (no changes needed).
Daniel Stender
- [pybtex] 22/108: Update my e-mail address.
Daniel Stender
- [pybtex] 23/108: Remove requires.txt (dpkg is better at handling dependencies).
Daniel Stender
- [pybtex] 24/108: Respect the ‘nocheck’ build option.
Daniel Stender
- [pybtex] 25/108: New upstream release.
Daniel Stender
- [pybtex] 26/108: Update debian/copyright.
Daniel Stender
- [pybtex] 27/108: Release.
Daniel Stender
- [pybtex] 28/108: * Run tests for all supported Python versions. + Build-depend on python-all.
Daniel Stender
- [pybtex] 29/108: Fix watch file to accept more than one dot in version number.
Daniel Stender
- [pybtex] 30/108: New upstream release.
Daniel Stender
- [pybtex] 31/108: Work around the fact that different PKG-INFO files can be generated for different Python versions.
Daniel Stender
- [pybtex] 32/108: Release.
Daniel Stender
- [pybtex] 33/108: Document that PKG-INFO mangling is to work-around bug #575377.
Daniel Stender
- [pybtex] 34/108: Fix a typo in debian/rules. Thanks to Michael Fladischer for spotting that.
Daniel Stender
- [pybtex] 35/108: Drop work-around for bug #575377.
Daniel Stender
- [pybtex] 36/108: * Bump standards version to 3.9.0. + Override conflicts-with-version (Breaks is not sufficient for pybtex).
Daniel Stender
- [pybtex] 37/108: Get rid of build-dependency on bzr (closes: #593029).
Daniel Stender
- [pybtex] 38/108: Bump standards version to 3.9.1.
Daniel Stender
- [pybtex] 39/108: Err, really bump standards version to 3.9.1.
Daniel Stender
- [pybtex] 40/108: Release 0.13.2-2.
Daniel Stender
- [pybtex] 41/108: New upstream release.
Daniel Stender
- [pybtex] 42/108: Release 0.14-1.
Daniel Stender
- [pybtex] 43/108: M debian/control M debian/changelog
Daniel Stender
- [pybtex] 44/108: M debian/changelog
Daniel Stender
- [pybtex] 45/108: corrected small mistakes in debian/changelog
Daniel Stender
- [pybtex] 46/108: changed release tag in debian/changelog to UNRELEASED, corrected maintainer in debian/copyright
Daniel Stender
- [pybtex] 47/108: corrected maintainer field in debian/copyright
Daniel Stender
- [pybtex] 48/108: correction of debian/copyright
Daniel Stender
- [pybtex] 49/108: changed debian/copyright to meet CANDIDATE DEP-5, upstream-maintainer corrected
Daniel Stender
- [pybtex] 50/108: replaced tabs with spaces and restored the monkey tails in debian/changelog
Daniel Stender
- [pybtex] 51/108: * New upstream release + Changed license in debian/copyright from GPL-3 to EXPAT. * Changed to build with dh_python2 + Changed debian/rules to build with dh $@ --with python 2. + Changed debian/control to X-Python-Version, added Breaks, removed python-support build-dep. * Changed debian/copyright + to meet CANDIDATE DEP-5. + removed GPL-2+ license for database/convert/__main__.py. * Uploaded to Unstable.
Daniel Stender
- [pybtex] 52/108: restored build with python-support
Daniel Stender
- [pybtex] 53/108: corrected date in debian/copyright
Daniel Stender
- [pybtex] 54/108: minor changes in debian/changelog control copyright
Daniel Stender
- [pybtex] 55/108: debian/control: s/python/python-all
Daniel Stender
- [pybtex] 56/108: added standards bump notification to debian/changelog
Daniel Stender
- [pybtex] 57/108: debian/copyright: added BSD-3-clause license for custom_fixers/fix_alt_unicode.py
Daniel Stender
- [pybtex] 58/108: copyright: changed maintainer
Daniel Stender
- [pybtex] 59/108: copyright: changed Upstream-Contact
Daniel Stender
- [pybtex] 60/108: releasing version 0.15-1
Daniel Stender
- [pybtex] 61/108: Use canonical URIs for Vcs-* fields.
Daniel Stender
- [pybtex] 62/108: * New upstream release. * deb/changelog: fixed typo (fixes lintian complaint on experimental-to-unstable-w/o-comment). * deb/control: + Updated maintainer email address. + Bumped standards to 3.9.5 (no changes needed). + Added python-pkg-resources to Depends (Closes: #684699). + Removed Conflicts (obsolete). * deb/copyright: changed Format line for DEP-5, updated. * deb/rules: + Added export lines for DH_VERBOSE and DEB_BUILD_OPTIONS. + Removed build targets in favour of simplified dh sequencer call. * Changed to build with dh_python2: + deb/control: removed b-d on python-support, bumped version of python-all to 2.6.6-3~. + deb/rules: rearragned, added python2 to dh sequencer. * Upstream now ships with changelog: + deb/clean: removed doc/changelog. + deb/control: removed b-p on elinks. + deb/rules: dropped override for dh_installchangelogs. * Removed lintian-overrides (obsolete).
Daniel Stender
- [pybtex] 63/108: releasing package pybtex version 0.18-1
Daniel Stender
- [pybtex] 64/108: Added Section to binary package.
Daniel Stender
- [pybtex] 65/108: set up DEP-8 testing, dropped Section of binary package (not needed)
Daniel Stender
- [pybtex] 66/108: Bumped standards to 3.9.6 (no changes needed)
Daniel Stender
- [pybtex] 67/108: updated deb/copyright
Daniel Stender
- [pybtex] 68/108: added dh-python to build-deps
Daniel Stender
- [pybtex] 69/108: deb/watch: watch pypi.debian.net
Daniel Stender
- [pybtex] 70/108: dep-8 test: enabled allow-stderr, corrected path
Daniel Stender
- [pybtex] 71/108: deb/control: updated deprecated element; deb/tests/control: dropped unneeded restriction; deb/tests/pybtex: enabled deprecation warnings
Daniel Stender
- [pybtex] 72/108: deb/changelog: switching back to UNRELEASED
Daniel Stender
- [pybtex] 73/108: updated homepage and code repo URL
Daniel Stender
- [pybtex] 74/108: deb/changelog: new upstream release
Daniel Stender
- [pybtex] 75/108: deb/control: put group into Maintainer, updated uploader email address
Daniel Stender
- [pybtex] 76/108: deb/control: bumped Standards-Version
Daniel Stender
- [pybtex] 77/108: deb/control: removed Testsuite field (deprecated)
Daniel Stender
- [pybtex] 78/108: deb/copyright: updated
Daniel Stender
- [pybtex] 79/108: deb/control: bumped Debhelper version to 9
Daniel Stender
- [pybtex] 80/108: deb/copyright: updated upstream email address
Daniel Stender
- [pybtex] 81/108: deb/changelog: build 0.19 (0.20 out but needs latexcodec ITP #801309)
Daniel Stender
- [pybtex] 82/108: deb/changelog: changed to match 0.19
Daniel Stender
- [pybtex] 83/108: deb/control: don't depend on python-all, dropped X-Python-Version; deb/changelog: removed obsolete line
Daniel Stender
- [pybtex] 84/108: deb/rules: build with Pybuild
Daniel Stender
- [pybtex] 85/108: deb/docs: removed obsolete targets
Daniel Stender
- [pybtex] 86/108: deb/rules: use Pybuild customization for dh_auto_test
Daniel Stender
- [pybtex] 93/108: deb/rules: run dh_sphinxdoc
Daniel Stender
- [pybtex] 94/108: updated deb/doc-base
Daniel Stender
- [pybtex] 95/108: deb/tests/pybtex: run on default Python
Daniel Stender
- [pybtex] 87/108: use HTTPS for Vcs-Browser.
Daniel Stender
- [pybtex] 88/108: deb/control: dropped deps on pyparsing
Daniel Stender
- [pybtex] 89/108: deb/control: moved pyyaml from Recommends to Depends
Daniel Stender
- [pybtex] 90/108: deb/rules: moved test override up
Daniel Stender
- [pybtex] 91/108: deb/rules: update and cosmectics in dh_auto_install override
Daniel Stender
- [pybtex] 92/108: deb/rules: installed overrides for installdocs (Sphinx build) and dh_compress (save examples)
Daniel Stender
- [pybtex] 96/108: deb/control: arrange build-deps logically
Daniel Stender
- [pybtex] 97/108: deb/changelog: upload to unstable, finalized
Daniel Stender
- [pybtex] 98/108: deb/control: corrected an error
Daniel Stender
- [pybtex] 99/108: added hardcode-copyright-year.patch
Daniel Stender
- [pybtex] 100/108: deb/changelog: new upstream release
Daniel Stender
- [pybtex] 101/108: build on Python3; deb/control: added latexcodec to deps
Daniel Stender
- [pybtex] 102/108: stick to build on Python2 for now, much problems
Daniel Stender
- [pybtex] 103/108: deb/control: added latexcodec to build-deps
Daniel Stender
- [pybtex] 104/108: deb/control: bumped standards to 3.9.8
Daniel Stender
- [pybtex] 105/108: deb/control: dropped python-yaml from binary package deps
Daniel Stender
- [pybtex] 106/108: deb/changelog: upload to unstable
Daniel Stender
- [pybtex] 107/108: deb/copyright: added Hong Xu, updated copyright span
Daniel Stender
- [pybtex] 108/108: Updated version 0.20.1 from 'upstream/0.20.1'
Daniel Stender
- [pybtex] branch pristine-tar created (now 5a11668)
Daniel Stender
- [pybtex] annotated tag debian/0.12-2 created (now 2ab3813)
Daniel Stender
- [pybtex] annotated tag debian/0.12-1 created (now b1442f6)
Daniel Stender
- [pybtex] annotated tag debian/0.13.1-1 created (now 28667f3)
Daniel Stender
- [pybtex] annotated tag debian/0.13.2-1 created (now 36b9631)
Daniel Stender
- [pybtex] annotated tag debian/0.13.2-2 created (now 067ddfa)
Daniel Stender
- [pybtex] annotated tag debian/0.14-1 created (now 3d01d4d)
Daniel Stender
- [pybtex] annotated tag debian/0.14.1-1 created (now 9205057)
Daniel Stender
- [pybtex] annotated tag debian/0.15-1 created (now 8f25689)
Daniel Stender
- [pybtex] annotated tag debian/0.18-1 created (now c143d27)
Daniel Stender
- [pybtex] annotated tag debian/0.19-1 created (now 67d1e06)
Daniel Stender
- [pybtex] annotated tag debian/0.19-2 created (now b57abb7)
Daniel Stender
- [pybtex] annotated tag debian/0.20.1-1 created (now 2435925)
Daniel Stender
- [pybtex] annotated tag upstream/0.20.1 created (now aad1439)
Daniel Stender
- [giac] branch master updated (a00abbd -> 9e44906)
Ximin Luo
- [emos] 01/11: Merge tag 'upstream/4.4.7' into debian/master
Alastair McKinstry
- [emos] branch debian/master updated (2121eb0 -> 4b10ae6)
Alastair McKinstry
- [giac] branch master updated (9e44906 -> 2fe2e6c)
Ximin Luo
- [giac] branch pristine-tar updated (30f4f81 -> ddb8251)
Ximin Luo
- [giac] annotated tag upstream/1.2.3.57+dfsg1 created (now a4bf60c)
Ximin Luo
- [giac] branch master updated (2fe2e6c -> 4c910a3)
Ximin Luo
- [giac] annotated tag debian/1.2.3.57+dfsg1-1 created (now 5daded7)
Ximin Luo
- [giac] branch _volatile_test deleted (was 1676184)
Ximin Luo
- [giac] annotated tag debian/1.2.3.57+dfsg1-1 deleted (was 5daded7)
Ximin Luo
- [giac] 01/03: Fix shell syntax typo
Ximin Luo
- [giac] branch master updated (4c910a3 -> 2eb451b)
Ximin Luo
- [giac] annotated tag debian/1.2.3.57+dfsg1-2 created (now 65ba0f1)
Ximin Luo
- [sagemath] branch 7.6-bugfix created (now 2c858b8)
Tobias Hansen
- [python-admesh] branch master updated (4925ef7 -> 8b820d7)
Anton Gladky
- [python-admesh] branch pristine-tar updated (536bbc3 -> 69b8833)
Anton Gladky
- [python-admesh] annotated tag debian/0.98.7-1 created (now 6031e65)
Anton Gladky
- [python-admesh] annotated tag upstream/0.98.7 created (now 9731e8b)
Anton Gladky
- [ros-bloom] branch master updated (45e54aa -> e0cb333)
Jochen Sprickerhof
- [ros-bloom] annotated tag debian/0.5.26-2 created (now 0fa2ffa)
Jochen Sprickerhof
- [libgap-sage] branch master updated (f5d7dfa -> 81eb6b1)
Jerome Benoit
- [libgap-sage] annotated tag debian/4.8.7+3+20160327g69a66f0+dsx-1 created (now 025bee4)
Jerome Benoit
- [libgap-sage] annotated tag upstream/4.8.7+3+20160327g69a66f0+dsx created (now dc4f7b3)
Jerome Benoit
- [ferret-vis] branch debian/master updated (a902659 -> af7fc39)
Alastair McKinstry
- [sagemath] branch master updated (c2cb016 -> 3deaaab)
Tobias Hansen
- [pybtex] branch master updated (120c72f -> 8ec0dcc)
Ghislain Vaillant
- [pybtex] branch pristine-tar updated (5a11668 -> 0ce7fb2)
Ghislain Vaillant
- [pybtex] annotated tag debian/0.21-1 created (now cac92fa)
Ghislain Vaillant
- [pybtex] annotated tag upstream/0.21 created (now fc35453)
Ghislain Vaillant
- [pybtex] branch master updated (8ec0dcc -> f29fee2)
Ghislain Vaillant
- [tbb] branch danger/upstream created (now 1713448)
Steven Capper
- [tbb] branch danger/upstream deleted (was 1713448)
Steven Capper
- [tbb] annotated tag upstream/2017_U7 created (now b77618e)
Steven Capper
- [tbb] annotated tag debian/2017_U7-1_exp1 created (now e389709)
Steven Capper
- [tbb] branch master updated (95da3e7 -> c44172e)
Steven Capper
- [python-pymeasure] branch master created (now 9bb10fd)
Ghislain Vaillant
- [python-pymeasure] branch pristine-tar created (now 68659cb)
Ghislain Vaillant
- [python-pymeasure] annotated tag upstream/0.4.5 created (now 1c3d71a)
Ghislain Vaillant
- [tbb] branch master updated (c44172e -> a58b50c)
Steven Capper
- [tbb] tag debian/2017_U7-2 created (now a58b50c)
Steven Capper
- [tbb] branch steve-staging created (now 6b1d60d)
Steven Capper
- [tbb] branch steve-staging deleted (was 6b1d60d)
Steven Capper
- [sumo] branch master updated (967d4d9 -> 7893ad2)
Anton Gladky
- [sumo] branch pristine-tar updated (69cf063 -> 6569ae5)
Anton Gladky
- [tbb] branch steve-staging created (now 88dff77)
Steven Capper
- [sumo] annotated tag debian/0.30.0+dfsg1-1 created (now ae71d6d)
Anton Gladky
- [sumo] annotated tag upstream/0.30.0+dfsg1 created (now 6d9fa91)
Anton Gladky
- [tbb] branch steve-staging deleted (was 88dff77)
Steven Capper
- [tbb] branch steve-staging created (now 7b9b31b)
Steven Capper
- [numba] branch master updated (73e3969 -> edb0534)
Daniel Stender
- [tbb] branch pristine-tar updated (4f18c02 -> 619db96)
Steven Capper
- [numba] branch master updated (edb0534 -> 22747f3)
Daniel Stender
- [numba] annotated tag debian/0.34.0-2 created (now 2e0a288)
Daniel Stender
- [libmatio] branch master updated (671ab69 -> 34aecd7)
Sébastien Villemot
- [libmatio] branch pristine-tar updated (ad7deb5 -> 65d300f)
Sébastien Villemot
- [libmatio] annotated tag debian/1.5.10-1 created (now 28a508c)
Sébastien Villemot
- [libmatio] annotated tag upstream/1.5.10 created (now d9227ed)
Sébastien Villemot
- [tbb] branch steve-staging deleted (was 7b9b31b)
Steven Capper
- [tbb] branch steve-staging created (now c976527)
Steven Capper
- [tbb] branch master updated (a58b50c -> ada59e3)
Steven Capper
- [tbb] tag debian/2017_U7-3_exp1 created (now ada59e3)
Steven Capper
- [tbb] branch steve-staging deleted (was c976527)
Steven Capper
- [numba] branch master updated (22747f3 -> 0ffa08a)
Daniel Stender
- [caffe] branch master updated (4f64678 -> 9a09154)
Zhou Mo
- [caffe] annotated tag debian/1.0.0-3 created (now 4e72ede)
Zhou Mo
- [sagemath] branch 7.6-bugfix updated (2c858b8 -> b69385e)
Tobias Hansen
- [sagemath] branch 7.6-bugfix updated (b69385e -> 8d36637)
Tobias Hansen
- [sagemath] annotated tag debian/7.6-3 created (now 2a0ccc5)
Tobias Hansen
- [seaborn] branch master updated (c27a6b1 -> d51569b)
Andreas Tille
- [seaborn] branch pristine-tar updated (3e3a347 -> 5c0859f)
Andreas Tille
- [seaborn] annotated tag v0.8.0 created (now bde7883)
Andreas Tille
- [seaborn] tag debian/0.8.0-1 created (now 0f160e7)
Andreas Tille
- [seaborn] branch debian updated (e2869ce -> b183333)
Andreas Tille
- [apertium-nno] branch master updated (8a3fab5 -> 6c70d5b)
Tino Didriksen
- [apertium-nno] branch master updated (6c70d5b -> 58bc6a2)
Tino Didriksen
- [giella-sme] branch master updated (6953c40 -> 3a191f0)
Tino Didriksen
- [apertium-eo-ca] branch master updated (603ec0a -> 0ff923b)
Tino Didriksen
- [apertium-eo-es] branch master updated (582a9f6 -> 5f86f30)
Tino Didriksen
- [apertium-nno] branch master updated (58bc6a2 -> 57e1fa4)
Kartik Mistry
- [apertium-nno] branch master updated (57e1fa4 -> 3a4ba3a)
Kartik Mistry
- [apertium-nno] tag debian/0.9.0_r69513-2 created (now 3a4ba3a)
Kartik Mistry
- [giella-sme] branch master updated (3a191f0 -> 3daf4ac)
Kartik Mistry
- [giella-sme] tag debian/0.0.20150917_r121176-2 created (now 3daf4ac)
Kartik Mistry
- [sagemath] branch master updated (3deaaab -> d961e14)
Tobias Hansen
- [apertium-eo-ca] branch master updated (0ff923b -> 4d61a9d)
Kartik Mistry
- [apertium-eo-ca] tag debian/0.9.1_r60655-2 created (now 4d61a9d)
Kartik Mistry
- [apertium-eo-es] branch master updated (5f86f30 -> de941de)
Kartik Mistry
- [pyzo] branch master deleted (was 1e2b11e)
Ghislain Vaillant
- [mumps] branch experimental updated (892c8e1 -> 5039688)
Drew Parsons
- [tbb] branch steve-staging created (now 3052664)
Steven Capper
- [tbb] branch steve-staging updated (3052664 -> 1a752f1)
Steven Capper
- [ros-wstool] branch master updated (7861c30 -> af2e3f1)
Jochen Sprickerhof
- [ros-wstool] annotated tag debian/0.1.13-4 created (now 1f419e6)
Jochen Sprickerhof
- [tbb] branch steve-staging deleted (was 1a752f1)
Steven Capper
- [tbb] branch steve-staging created (now 307f747)
Steven Capper
- [ros-rosinstall] branch master updated (f127e41 -> 7de7d5e)
Jochen Sprickerhof
- [ros-rosinstall] annotated tag debian/0.7.7-5 created (now fb7d7c3)
Jochen Sprickerhof
- [libgpuarray] branch master updated (c14ffbd -> 73b3fef)
Ghislain Vaillant
- [libgpuarray] branch pristine-tar updated (e85fbc3 -> 34ef93c)
Ghislain Vaillant
- [libgpuarray] annotated tag debian/0.6.9-1 created (now b7d3e14)
Ghislain Vaillant
- [libgpuarray] annotated tag upstream/0.6.9 created (now 2559329)
Ghislain Vaillant
- [lua-torch-cwrap] branch master updated (8777238 -> 1f0bb29)
Zhou Mo
- [pybtex-docutils] branch master created (now a731a65)
Ghislain Vaillant
- [pybtex-docutils] branch pristine-tar created (now a3432a7)
Ghislain Vaillant
- [pybtex-docutils] annotated tag debian/0.2.1-1 created (now 8affd57)
Ghislain Vaillant
- [pybtex-docutils] annotated tag upstream/0.2.1 created (now 252ab68)
Ghislain Vaillant
- [pybtex] branch master updated (f29fee2 -> 0983946)
Ghislain Vaillant
- [pybtex] annotated tag debian/0.21-2 created (now 825ccb2)
Ghislain Vaillant
- [polybori] branch master updated (363bbed -> ee59a01)
Tobias Hansen
- [gsw] branch debian/master updated (9e7e80d -> a1c48a4)
Alastair McKinstry
- [adios] tag upstream/1.12.0 created (now c0f5b6d)
Alastair McKinstry
- [lua-torch-cwrap] branch master updated (1f0bb29 -> a1119d6)
Zhou Mo
- [lua-torch-graph] branch master updated (c5d7b9d -> 48dc404)
Zhou Mo
- [lua-torch-graph] branch pristine-tar updated (ac260d9 -> 72fc9d3)
Zhou Mo
- [lua-torch-graph] annotated tag upstream/0_20161121-g37dac07 created (now 06f220f)
Zhou Mo
- [lua-torch-nngraph] branch master updated (a0a1c26 -> 87322a3)
Zhou Mo
- [lua-torch-nngraph] branch pristine-tar updated (058bf5b -> f7b67bb)
Zhou Mo
- [lua-torch-nngraph] annotated tag upstream/0_20160804-g40e4207 created (now c7cea04)
Zhou Mo
- [lua-torch-nngraph] annotated tag upstream/0_20170208-g3ed3b9b created (now e81fd73)
Zhou Mo
- [lua-torch-optim] branch master updated (f8c4ede -> cc52522)
Zhou Mo
- [lua-torch-optim] branch pristine-tar updated (74d2a53 -> fd4440a)
Zhou Mo
- [lua-torch-optim] annotated tag upstream/0_20170208-g656c42a created (now 11947f1)
Zhou Mo
- [libgpuarray] branch master updated (73b3fef -> 9613f01)
Ghislain Vaillant
- [libgpuarray] annotated tag debian/0.6.9-2 created (now f0e4160)
Ghislain Vaillant
- [pybtex] annotated tag debian/0.21-2 deleted (was 825ccb2)
Daniel Stender
- [pybtex] branch master updated (0983946 -> 47355a1)
Daniel Stender
- [mlpack] branch master updated (0b5a57d -> a451930)
Barak A. Pearlmutter
- [mlpack] branch pristine-tar updated (a44b86e -> b124671)
Barak A. Pearlmutter
- [mlpack] annotated tag debian/2.2.4-1 created (now 8a8c3a3)
Barak A. Pearlmutter
- [mlpack] tag upstream/2.2.4 created (now ae8e35b)
Barak A. Pearlmutter
- [pybtex] annotated tag debian/0.21-2 created (now 62b9841)
Daniel Stender
- [petsc] branch master updated (aba34e3 -> 45a8ae4)
Drew Parsons
- [petsc] tag debian/3.7.6+dfsg1-3 created (now cee1e73)
Drew Parsons
- [petsc] branch master updated (45a8ae4 -> cee1e73)
Drew Parsons
- [atlas] 01/01: Use DEB_BUILD_OPTIONS=custom as new interface for building custom package.
Sébastien Villemot
- [atlas] branch master updated (d5cf6af -> ac0932e)
Sébastien Villemot
- [cylc] branch debian/master updated (b397567 -> 7496cbf)
Alastair McKinstry
- [cylc] tag debian/7.4.0-1 created (now 7496cbf)
Alastair McKinstry
- [adios] tag debian/1.11.0-2 created (now 38b4c53)
Alastair McKinstry
- [cdo] branch debian/master updated (00fd692 -> 34d045b)
Alastair McKinstry
- [gadap] branch debian/master created (now 8a0e989)
Alastair McKinstry
- [gadap] tag debian/2.0-7 created (now 3d48f0e)
Alastair McKinstry
- [gadap] tag debian/2.0-8 created (now 866e1a9)
Alastair McKinstry
- [gadap] tag debian/2.0-9 created (now 8a0e989)
Alastair McKinstry
- [iapws] branch debian/master updated (bf190b5 -> 599ad40)
Alastair McKinstry
- [iapws] tag debian/1.2-1 created (now bf190b5)
Alastair McKinstry
- [iapws] tag debian/1.2-2 created (now f16f4f6)
Alastair McKinstry
- [iapws] tag debian/1.2-3 created (now 599ad40)
Alastair McKinstry
- [atlas] branch master updated (ac0932e -> 5c67929)
Sébastien Villemot
- [openblas] branch master updated (4de7b3d -> e2ac51b)
Sébastien Villemot
- [openblas] branch pristine-tar updated (cd7430d -> 7b585d3)
Sébastien Villemot
- [openblas] 01/01: pristine-tar data for openblas_0.2.20+ds.orig.tar.gz
Sébastien Villemot
- [openblas] annotated tag debian/0.2.20+ds-1 created (now 6814c7f)
Sébastien Villemot
- [openblas] annotated tag upstream/0.2.20+ds created (now f21755f)
Sébastien Villemot
- [openblas] branch master updated (e2ac51b -> 06699c3)
Sébastien Villemot
- [openblas] annotated tag debian/0.2.20+ds-2 created (now 317a871)
Sébastien Villemot
- [tbb] branch steve-staging deleted (was 307f747)
Steven Capper
- [tbb] branch steve-staging created (now c9f44bf)
Steven Capper
- [tbb] branch master updated (ada59e3 -> c9f44bf)
Steven Capper
- [tbb] annotated tag debian/2017_U7-4 created (now 70ab215)
Steven Capper
- [ros-vcstools] 01/02: Replace VCS patch by upstream version
Jochen Sprickerhof
- [ros-vcstools] branch master updated (d6ee780 -> fd50bdd)
Jochen Sprickerhof
- [ros-vcstools] branch patch-queue/master created (now 7fe6376)
Jochen Sprickerhof
- [ros-vcstools] annotated tag debian/0.1.39-5 created (now 3eb7e29)
Jochen Sprickerhof
- [pyferret] branch debian/master created (now 8e040b1)
Alastair McKinstry
- [pyferret] tag debian/1.1.0-1 created (now fbb90ca)
Alastair McKinstry
- [pyferret] tag debian/7.0.0-1 created (now 3a83711)
Alastair McKinstry
- [pyferret] tag debian/7.0.0-2 created (now 25b087c)
Alastair McKinstry
- [pyferret] tag debian/7.0.0-3 created (now 393a8fb)
Alastair McKinstry
- [pyferret] tag debian/7.1.1.beta-1 created (now 0295a25)
Alastair McKinstry
- [pyferret] tag debian/7.2-1 created (now 8e040b1)
Alastair McKinstry
- [pyferret] tag upstream/1.0.2 created (now 5fd5d65)
Alastair McKinstry
- [pyferret] tag upstream/1.1.0 created (now 29b824f)
Alastair McKinstry
- [pyferret] tag upstream/1.2.0 created (now e683b6e)
Alastair McKinstry
- [pyferret] tag upstream/7.0.0 created (now 71e4478)
Alastair McKinstry
- [pyferret] tag upstream/7.1.1.beta created (now 6255173)
Alastair McKinstry
- [pyferret] tag upstream/7.2 created (now 2d8f620)
Alastair McKinstry
- [eccodes] branch debian/master created (now d1a842c)
Alastair McKinstry
- [eccodes] tag debian/2.0.0-1 created (now 76a77d1)
Alastair McKinstry
- [eccodes] tag debian/2.0.2-4 created (now 1a0d1b7)
Alastair McKinstry
- [eccodes] tag debian/2.0.2-5 created (now 5ee2dfc)
Alastair McKinstry
- [eccodes] tag debian/2.1.0-1 created (now 3724614)
Alastair McKinstry
- [eccodes] tag debian/2.2.0-1 created (now d6ee1b9)
Alastair McKinstry
- [eccodes] tag debian/2.3.0-1 created (now 25f43a3)
Alastair McKinstry
- [eccodes] tag debian/2.4.0-1 created (now fdc8c43)
Alastair McKinstry
- [eccodes] tag debian/2.4.0-3 created (now d1a842c)
Alastair McKinstry
- [eccodes] tag upstream/0.13.0 created (now d9e7ad3)
Alastair McKinstry
- [eccodes] tag upstream/0.16.0 created (now 0bc5287)
Alastair McKinstry
- [eccodes] tag upstream/2.0.0 created (now ca7cfc5)
Alastair McKinstry
- [eccodes] tag upstream/2.0.2 created (now 90db749)
Alastair McKinstry
- [eccodes] tag upstream/2.1.0 created (now 68426e5)
Alastair McKinstry
- [eccodes] tag upstream/2.2.0 created (now 47b2e3a)
Alastair McKinstry
- [eccodes] tag upstream/2.3.0 created (now a7aee90)
Alastair McKinstry
- [eccodes] tag upstream/2.4.0 created (now 070e871)
Alastair McKinstry
- [lua-torch-paths] branch master updated (c09fa14 -> 0031d9a)
Zhou Mo
- [lua-torch-paths] branch pristine-tar updated (d46ef0a -> 8647e23)
Zhou Mo
- [lua-torch-paths] annotated tag upstream/0_20170226-g4ebe222 created (now 6fe5393)
Zhou Mo
- [exodus] branch debian/master updated (7e0cc83 -> b0959c1)
Alastair McKinstry
- [fcm] branch debian/master updated (4b2a4d4 -> 911b793)
Alastair McKinstry
- [fcm] tag debian/2016.10.0-1 created (now 768bc6a)
Alastair McKinstry
- [fcm] tag debian/2017.02.0-1 created (now 171a433)
Alastair McKinstry
- [fcm] tag debian/2017.02.0-2 created (now 18edaf6)
Alastair McKinstry
- [fcm] tag upstream/2016.12.0 created (now 147e858)
Alastair McKinstry
- [fcm] tag upstream/2017.02.0 created (now 396db40)
Alastair McKinstry
- [ferret-vis] tag debian/6.9.6-1 created (now 2460da0)
Alastair McKinstry
- [ferret-vis] tag debian/6.9.6-2 created (now 11f2884)
Alastair McKinstry
- [ferret-vis] tag debian/7.0-1 created (now 704f43c)
Alastair McKinstry
- [ferret-vis] tag debian/7.1-1 created (now af7fc39)
Alastair McKinstry
- [ferret-vis] tag upstream/6.9.6 created (now f6a6d12)
Alastair McKinstry
- [ferret-vis] tag upstream/7.0 created (now 9576e26)
Alastair McKinstry
- [ferret-vis] tag upstream/7.1 created (now 3a0b75e)
Alastair McKinstry
- [flexpart] branch debian/master created (now fc86e59)
Alastair McKinstry
- [flexpart] tag debian/9.0-2-14 created (now 941a659)
Alastair McKinstry
- [flexpart] tag debian/9.02-15 created (now fc86e59)
Alastair McKinstry
- [lua-torch-sys] branch master updated (11ad892 -> 4393966)
Zhou Mo
- [lua-torch-sys] branch pristine-tar updated (0f3b503 -> 12ef4a5)
Zhou Mo
- [lua-torch-sys] annotated tag upstream/0_20161027-gf073f05 created (now 8d46db0)
Zhou Mo
- [flexpart] tag debian/9.02-16 created (now c1b72e5)
Alastair McKinstry
- [flexpart] tag upstream/9.02 created (now 949e210)
Alastair McKinstry
- [grads] branch debian/master updated (61489a3 -> cff4ca1)
Alastair McKinstry
- [gsw] tag debian/3.1.1-1 created (now 9e7e80d)
Alastair McKinstry
- [gsw] tag debian/3.1.1-2 created (now 04b309f)
Alastair McKinstry
- [gsw] tag upstream/3.1.1 created (now f459856)
Alastair McKinstry
- [gsw] branch debian/master updated (a1c48a4 -> 2ffc579)
Alastair McKinstry
- [jpy] branch debian/master created (now 117c030)
Alastair McKinstry
- [jpy] tag debian/0.8-7 created (now 117c030)
Alastair McKinstry
- [libaec] branch debian/master created (now 6c252af)
Alastair McKinstry
- [libaec] tag debian/0.3.2-1 created (now 6c252af)
Alastair McKinstry
- [libaec] tag debian/0.3.2-1_bpo8+1 created (now d6b9637)
Alastair McKinstry
- [libaec] tag upstream/0.3.2 created (now bcea8ae)
Alastair McKinstry
- [libaec] branch debian/jessie-backports created (now d6b9637)
Alastair McKinstry
- [libdap] branch debian/master updated (1f14a04 -> ee8c6fe)
Alastair McKinstry
- [libdap] tag debian/3.18.3-3 created (now 00af598)
Alastair McKinstry
- [libdap] tag debian/3.19.0-1 created (now ee8c6fe)
Alastair McKinstry
- [libdap] tag upstream/3.18.3 created (now 9484e40)
Alastair McKinstry
- [libdap] tag upstream/3.19.0 created (now f041285)
Alastair McKinstry
- [libgetdata] branch debian/master updated (8220f32 -> 32ef22b)
Alastair McKinstry
- [libgetdata] tag debian/0.10.0-3 created (now 32ef22b)
Alastair McKinstry
- [libgetdata] tag upstream/0.10.0 created (now 8ba32bf)
Alastair McKinstry
- [ncl] branch debian/master updated (2312210 -> bbb7fe9)
Alastair McKinstry
- [ncl] branch debian/jessie-backports created (now 0446960)
Alastair McKinstry
- [pygrib] branch debian/master updated (dfb05ee -> 630b630)
Alastair McKinstry
- [pygrib] tag debian/2.0.2-2 created (now 630b630)
Alastair McKinstry
- [silo-llnl] branch debian/master updated (43bfda5 -> ce4c9c8)
Alastair McKinstry
- [silo-llnl] tag debian/4.10.2-5 created (now fb58337)
Alastair McKinstry
- [udunits] branch debian/master updated (d30bde4 -> afada33)
Alastair McKinstry
- [udunits] tag debian/2.2.25-1 created (now afada33)
Alastair McKinstry
- [zygrib] branch debian/master updated (ff89dc7 -> def669c)
Alastair McKinstry
- [zygrib] tag dfsg/8.0.1+dfsg.1 created (now 3eb95f6)
Alastair McKinstry
- [zygrib] tag upstream/8.0.1 created (now 76a38b8)
Alastair McKinstry
- [zygrib] branch debian/dfsg created (now 3eb95f6)
Alastair McKinstry
- [zygrib] branch debian/jessie-backports created (now ff89dc7)
Alastair McKinstry
- [zygrib] branch debian/experimental created (now 392e549)
Alastair McKinstry
- [zygrib] branch debian/master updated (def669c -> 39abc9a)
Alastair McKinstry
- [metview] branch debian/master updated (79d19ec -> 96552da)
Alastair McKinstry
- [cvc4] branch master updated (80a6dad -> 51f57fe)
Fabian Wolff
- [cvc4] 03/03: Release for unstable
Fabian Wolff
- [cvc4] 01/03: Use dh_missing and remove references to uninstalled man pages
Fabian Wolff
- [lua-torch-trepl] branch master updated (4c70ed5 -> 32e969a)
Zhou Mo
- [lua-torch-trepl] branch pristine-tar updated (9662b2d -> c8054c7)
Zhou Mo
- [lua-torch-trepl] annotated tag upstream/0_20170619-ge5e17e3 created (now 5c9763f)
Zhou Mo
- [ros-bloom] branch master updated (e0cb333 -> 5eafd40)
Jochen Sprickerhof
- [ros-bloom] annotated tag debian/0.5.26-3 created (now cef8d36)
Jochen Sprickerhof
- [glpk] branch master updated (8a75409 -> d8bebc0)
Sébastien Villemot
- [glpk] branch pristine-tar updated (bdf9933 -> 40ca114)
Sébastien Villemot
- [glpk] annotated tag debian/4.63-1 created (now 7d12537)
Sébastien Villemot
- [glpk] annotated tag upstream/4.63 created (now 95a02fe)
Sébastien Villemot
- [eccodes] branch debian/master updated (d1a842c -> 19516a9)
Alastair McKinstry
- [libaec] branch debian/master updated (6c252af -> 0ae9ab5)
Alastair McKinstry
- [cdftools] branch debian/master created (now 5df110f)
Alastair McKinstry
- [cdftools] tag debian/3.0-1 created (now bd54707)
Alastair McKinstry
- [cdftools] tag upstream/3.0 created (now 5799ea5)
Alastair McKinstry
- [cdftools] tag upstream/3.0.1 created (now a9cec1e)
Alastair McKinstry
- [cmor] branch debian/master updated (09ed937 -> 7d132f9)
Alastair McKinstry
- [cmor] tag upstream/3.2.4 created (now 7721a3a)
Alastair McKinstry
- [cmor] branch dev-python3 created (now 5d65b99)
Alastair McKinstry
- [tbb] branch steve-staging deleted (was c9f44bf)
Steven Capper
- [cmor-tables] branch debian/master updated (9efd375 -> 5a00663)
Alastair McKinstry
- [dh-fortran-mod] branch debian/master created (now 1258a57)
Alastair McKinstry
- [flextra] branch debian/master updated (aebde7b -> 4be3a29)
Alastair McKinstry
- [flextra] branch debian/master updated (4be3a29 -> e4fd203)
Alastair McKinstry
- [flextra] tag debian/5.0-6 created (now 4be3a29)
Alastair McKinstry
- [flextra] tag debian/5.0-7 created (now e4fd203)
Alastair McKinstry
- [ic3-autosubmit] branch debian/master updated (f4566fd -> a04234f)
Alastair McKinstry
- [tbb] branch steve-staging created (now a7b8996)
Steven Capper
- [visit] branch debian/master updated (dc52da1 -> 07eb03b)
Alastair McKinstry
- [vistrails] branch debian/master created (now 06c30e1)
Alastair McKinstry
- [visit] tag upstream/2.10.0 created (now c512e15)
Alastair McKinstry
- [visit] tag upstream/2.10.2 created (now 4f8e035)
Alastair McKinstry
- [visit] tag upstream/2.10.3 created (now c0cdd90)
Alastair McKinstry
- [visit] tag upstream/2.12.1 created (now 2e1eec9)
Alastair McKinstry
- [visit] tag upstream/2.12.3 created (now d633b32)
Alastair McKinstry
- [visit] tag upstream/2.7.3 created (now 1adffc3)
Alastair McKinstry
- [visit] tag upstream/2.8.1 created (now a058d82)
Alastair McKinstry
- [visit] tag upstream/2.9.1 created (now 5345de1)
Alastair McKinstry
- [visit] tag upstream/2.9.2 created (now 049d5c5)
Alastair McKinstry
- [vistrails] tag debian/2.1.1-1 created (now 2d6d949)
Alastair McKinstry
- [vistrails] tag debian/2.2-1 created (now 4e47c44)
Alastair McKinstry
- [vistrails] tag upstream/2.1.1 created (now 395f559)
Alastair McKinstry
- [vistrails] tag upstream/2.1.4 created (now e11f3ff)
Alastair McKinstry
- [vistrails] tag upstream/2.2 created (now 464132b)
Alastair McKinstry
- [vistrails] tag upstream/2.2.4 created (now b73e07c)
Alastair McKinstry
- [vistrails] branch debian/master updated (06c30e1 -> 6e45ad9)
Alastair McKinstry
- [tbb] branch steve-staging deleted (was a7b8996)
Steven Capper
- [atlas] branch master updated (5c67929 -> 9a68d7e)
Sébastien Villemot
- [fityk] branch master updated (177fcf8 -> bb7b68c)
Stuart Prescott
- [fityk] branch pristine-tar updated (3caa46f -> 589f5b8)
Stuart Prescott
- [fityk] annotated tag debian/1.3.1-1 created (now 70a0c8d)
Stuart Prescott
- [fityk] annotated tag upstream/1.3.1 created (now cc6c39f)
Stuart Prescott
- [lua-torch-cwrap] branch master updated (a1119d6 -> 5154c45)
Zhou Mo
- [lua-torch-cwrap] annotated tag debian/0_20160222-gdbd0a62-4 created (now 4a639f4)
Zhou Mo
- [lua-torch-graph] branch master updated (48dc404 -> b53914d)
Zhou Mo
- [lua-torch-graph] annotated tag debian/0_20161121-g37dac07-1 created (now 9c234d7)
Zhou Mo
- [lua-torch-nn] branch master updated (b84bead -> c5b0383)
Zhou Mo
- [lua-torch-nn] branch pristine-tar updated (0b90a06 -> 631657e)
Zhou Mo
- [lua-torch-nn] annotated tag debian/0_20170726-gf613412+dfsg-1 created (now c06c3dd)
Zhou Mo
- [lua-torch-nn] annotated tag upstream/0_20170726-gf613412+dfsg created (now b2b82ac)
Zhou Mo
- [lua-torch-nngraph] branch master updated (87322a3 -> d0614c8)
Zhou Mo
- [lua-torch-nngraph] annotated tag debian/0_20170208-g3ed3b9b-1 created (now 2051c46)
Zhou Mo
- [lua-torch-optim] branch master updated (cc52522 -> 7dd9394)
Zhou Mo
- [lua-torch-optim] annotated tag debian/0_20170208-g656c42a-1 created (now 51179e9)
Zhou Mo
- [lua-torch-paths] branch master updated (0031d9a -> f9e0585)
Zhou Mo
- [lua-torch-paths] annotated tag debian/0_20170226-g4ebe222-1 created (now 2845719)
Zhou Mo
- [lua-torch-sundown] branch master updated (35375d9 -> 50205f4)
Zhou Mo
- [lua-torch-sundown] branch pristine-tar updated (ea70eeb -> 5eeddad)
Zhou Mo
- [lua-torch-sundown] annotated tag debian/0_20161027-g4324669-1 created (now 8c12c2b)
Zhou Mo
- [lua-torch-sundown] annotated tag upstream/0_20160713-g8353f5a created (now 8e0610e)
Zhou Mo
- [lua-torch-sundown] annotated tag upstream/0_20160829-g17ea705 created (now 5f7eb59)
Zhou Mo
- [lua-torch-sundown] annotated tag upstream/0_20161027-g4324669 created (now 1bfc472)
Zhou Mo
- [lua-torch-sys] branch master updated (4393966 -> 398d252)
Zhou Mo
- [lua-torch-sys] annotated tag debian/0_20161027-gf073f05-1 created (now 6d1ac73)
Zhou Mo
- [lua-torch-torch7] branch master updated (8af90b7 -> 9498d61)
Zhou Mo
- [lua-torch-torch7] branch pristine-tar updated (dc14563 -> fce80f8)
Zhou Mo
- [lua-torch-torch7] annotated tag debian/0_20170720-gaed3171-1 created (now fd469be)
Zhou Mo
- [lua-torch-torch7] annotated tag upstream/0_20170720-gaed3171 created (now 4c14e3f)
Zhou Mo
- [lua-torch-trepl] branch master updated (32e969a -> c350824)
Zhou Mo
- [lua-torch-trepl] annotated tag debian/0_20170619-ge5e17e3-1 created (now 41dc2a5)
Zhou Mo
- [caffe-contrib] branch master updated (c7d42fa -> f6631d6)
Zhou Mo
- [caffe-contrib] annotated tag debian/1.0.0-3 created (now f2e4a95)
Zhou Mo
- [eccodes] branch debian/master updated (19516a9 -> a318355)
Alastair McKinstry
- [exodus] branch debian/master updated (b0959c1 -> 2d12116)
Alastair McKinstry
- [hfst-ospell] branch master updated (f68020f -> e3d923f)
Tino Didriksen
- [librsb] branch master updated (26fa7dc -> f6c5d77)
Rafael Laboissiere
- [tbb] branch master updated (c9f44bf -> 9bd54ad)
Steven Capper
- [tbb] annotated tag debian/2017_U7-5_exp1 created (now a7837e9)
Steven Capper
- [librsb] branch master updated (f6c5d77 -> c9a3dbd)
Rafael Laboissiere
- [librsb] branch stretch created (now 83ad4e4)
Rafael Laboissiere
- [sundials] branch master updated (10a52f0 -> 432a1c0)
James Tocknell
- [hfst-ospell] branch master updated (e3d923f -> 094d24a)
Kartik Mistry
- [cmor] branch debian/master updated (7d132f9 -> daa4171)
Alastair McKinstry
- [cmor] tag debian/3.2.5-1 created (now daa4171)
Alastair McKinstry
- [cmor] tag upstream/3.2.5 created (now cfc7394)
Alastair McKinstry
- [eccodes] branch debian/master updated (a318355 -> 6da515f)
Alastair McKinstry
- [eccodes] tag debian/2.4.0-4 created (now 6da515f)
Alastair McKinstry
- [emos] tag debian/2%4.4.5-1 created (now 0fa0380)
Alastair McKinstry
- [emos] tag debian/2%4.4.5-2 created (now 765d99b)
Alastair McKinstry
- [emos] tag debian/2%4.4.6-1 created (now 2121eb0)
Alastair McKinstry
- [emos] tag debian/2%4.4.7-1 created (now be699a7)
Alastair McKinstry
- [emos] tag debian/2%4.4.7-2 created (now 94387fe)
Alastair McKinstry
- [emos] tag debian/2%4.4.9-1 created (now 4b10ae6)
Alastair McKinstry
- [emos] tag upstream/4.4.5 created (now d027021)
Alastair McKinstry
- [emos] tag upstream/4.4.6 created (now 964e109)
Alastair McKinstry
- [emos] tag upstream/4.4.7 created (now 886ab02)
Alastair McKinstry
- [emos] tag upstream/4.4.9 created (now 12ff067)
Alastair McKinstry
- [emos] tag upstream/4.5.0 created (now 93afbe5)
Alastair McKinstry
- [emos] branch debian/master updated (4b10ae6 -> 2033824)
Alastair McKinstry
- [opencv] branch master updated (6340e94 -> 963bdbc)
Mattia Rizzolo
- [hfst-ospell] tag debian/0.4.5_r343-2 created (now 094d24a)
Kartik Mistry
- [ncl] branch debian/master updated (bbb7fe9 -> 1aac698)
Alastair McKinstry
- [ncl] tag debian/6.4.0-2 created (now 1aac698)
Alastair McKinstry
- [ncl] tag debian/6.2.0-3 created (now 29b0b7d)
Alastair McKinstry
- [ncl] tag debian/6.3.0-2 created (now e87bac2)
Alastair McKinstry
- [vapor] branch debian/master created (now 993eb4c)
Alastair McKinstry
- [vapor] tag upstream/2.6.0_rc0 created (now f8c022f)
Alastair McKinstry
- [amp] branch master created (now ffd8c2a)
Muammar El Khatib
- [amp] branch pristine-tar created (now e87d58e)
Muammar El Khatib
- [amp] annotated tag upstream/0.6 created (now cd28c43)
Muammar El Khatib
- [amp] annotated tag upstream/0.6_git20170729 created (now ad62f35)
Muammar El Khatib
- [yade] branch master updated (9d5efcc -> 837f9da)
Anton Gladky
- [yade] annotated tag debian/2017.01a-9 created (now f38dae6)
Anton Gladky
Last message date:
Mon Jul 31 21:10:10 UTC 2017
Archived on: Mon Jul 31 21:10:16 UTC 2017
This archive was generated by
Pipermail 0.09 (Mailman edition).