302 Commits

Author SHA256 Message Date
Dominique Leuenberger
99bfb35d9a Accepting request 819936 from GNOME:Factory
New stable release (forwarded request 818719 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/819936
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=101
2020-07-13 07:05:04 +00:00
886eb9ab0d Accepting request 818719 from GNOME:Next
New stable release

OBS-URL: https://build.opensuse.org/request/show/818719
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=176
2020-07-10 10:06:25 +00:00
Dominique Leuenberger
814b70fd57 Accepting request 811866 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/811866
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=100
2020-06-11 08:00:30 +00:00
2eaf2529fa Accepting request 811595 from GNOME:Next
New stable rel

OBS-URL: https://build.opensuse.org/request/show/811595
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=174
2020-06-05 15:20:59 +00:00
Dominique Leuenberger
23e784e568 Accepting request 798332 from GNOME:Factory
New stable release, not buildtested (forwarded request 796655 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/798332
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=99
2020-04-29 18:42:18 +00:00
9528d4d86c Accepting request 796655 from GNOME:Next
New stable release, not buildtested

OBS-URL: https://build.opensuse.org/request/show/796655
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=172
2020-04-27 17:36:55 +00:00
Dominique Leuenberger
962d6360ca Accepting request 795603 from GNOME:Factory
Push forgotten glib2 update

OBS-URL: https://build.opensuse.org/request/show/795603
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=98
2020-04-23 16:28:54 +00:00
448a796c28 Accepting request 793107 from GNOME:Next
- Update to version 2.48.3:
  + Librsvg now requires glib 2.50.0 or later.
  + rsvg-convert's --background-color option now accepts colors
    with transparency like #rrggbbaa, rgba(...), hsla(...); the
    transparency value was ignored before.
  + Fix arithmetic overflow when rendering to large GdkPixbufs.
  + Make librsvg build with Rust 1.39 again.
  + Don't require upcalls into C code for Debian powerpc.
- Add check section and run testsuite during build.
- Update to version 2.48.2:
  + Fix linking of the test suite against Harfbuzz.
- Update to version 2.48.1:
  + Fix baseline-shift for simple subscripts/superscripts and
    absolute offsets. This should fix a lot of Wikimedia images
    with formulas.
  + Support images with data: URLs that don't have a MIME-type.
    This fixes some Open Clip Art images generated by old versions
    of Adobe Illustrator.
  + Fix build of the test suite on Windows.
  + Support running the rsvg_internals tests on Windows.
- Update to version 2.48.0:
  + The following is a summary of changes between 2.46.x and
    2.48.0. For full details, please see the 2.47.x release notes
    below.
  + This release requires at least Rust 1.39.
  + New API, rsvg_handle_set_stylesheet(), to set a CSS stylesheet
    independent of the SVG document.
  + Support opacity in patterns.
  + Librsvg's XML parser now supports namespaces (xmlns), and is
    stricter than before about it. Files may fail to parse if there
    are attributes or elements with namespace prefixes (e.g.
    foo:bar instead of plain bar), but without a corresponding
    namespace declaration (e.g.
    xmlns:foo="http://example.com/foo").
    This may happen especially with incorrectly-written SVGs that
    use xlink:href or xi:include attributes without the
    corresponding namespace declarations. If you run into this,
    just add the following to your toplevel SVG element:
      <svg xmlns="http://www.w3.org/2000/svg"
           xmlns:xlink="http://www.w3.org/1999/xlink"
	   xmlns:xi="http://www.w3.org/2001/XInclude">
           ^^^^^^^^^ these ones
   + Librsvg no longer depends on libcroco, and now does all CSS
     processing using Rust crates from Mozilla Servo. As a result,
     librsvg can now handle much more complex CSS selectors than
     before.
  + Link-time optimization (LTO) is disabled by default on release
    builds, as this increased build time too much. Downstream
    distributors may want to turn it back on in the toplevel
    Cargo.toml.
  + (CVE-2019-20446) - Librsvg now has limits on the number of
    loaded XML elements, and the number of referenced elements
    within an SVG document. This is to mitigate malicious SVGs
    which try to consume all memory, and those which try to consume
    an exponential amount of CPU time.
  + Many bugfixes; please see the 2.47.x release notes below.
- Changes from version 2.47.4:
  + Fix rsvg-convert's multipage PDF output when the zoom option is
    used.
  + Do not stop rendering if an <image> element references a
    nonexistent file. This fixes a number of Open Clipart cases.
  + Compute the font-size cascade correctly when there are "em"
    #and "ex" units involved.
  + Updated the man page for rsvg-convert.
- Update to version 2.47.3:
  + New API, rsvg_handle_set_stylesheet(), to set a CSS
    stylesheet independent of the SVG document.
  + Support opacity in patterns.
  + Move away from the Cairo transform type to our own.
  + Update the gtk-rs version.
- Changes from version 2.47.2:
  + Handling of the "result", "in", "in2" attributes in filter
    primitives is slightly stricter now, and spec compliant.
  + Fix infinite loop when processing CSS sibling combinators.
  + feImage filters no longer clip their output to integer
    coordinates.
  + Documentation for the Rust crate.
  + Debug logs from RSVG_LOG=1 should now be more legible and
    contain better information on invalid CSS.
  + Remove link-time workarounds for Rust pre-1.35.
  + Unify internal error types to share the CSS code with
    gnome-shell.
  + Made handling of XML namespaces more spec-compliant.
  + Lots of refactoring to start moving away from Cairo internals.
- Changes from version 2.47.1:
  + Librsvg no longer depends on libcroco!  It now does all CSS
    processing using Rust crates from Mozilla Servo; these are also
    the crates that are in use in recent versions of Firefox.  As a
    result, librsvg can now handle much more complex CSS selectors
    than before.
- Drop pkgconfig(libcroco-0.6) BuildRequires: no longer needed.

OBS-URL: https://build.opensuse.org/request/show/793107
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=170
2020-04-14 10:19:59 +00:00
Dominique Leuenberger
8f0f0c3bf4 Accepting request 750954 from GNOME:Factory
New stable release (forwarded request 750706 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/750954
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=97
2019-11-29 14:57:35 +00:00
b698a1d837 Accepting request 750706 from GNOME:Next
New stable release

OBS-URL: https://build.opensuse.org/request/show/750706
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=168
2019-11-26 09:29:49 +00:00
Dominique Leuenberger
d7ce88bcd7 Accepting request 749280 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/749280
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=96
2019-11-23 23:06:24 +00:00
238cd36450 Accepting request 748087 from GNOME:Next
OBS-URL: https://build.opensuse.org/request/show/748087
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=166
2019-11-18 10:48:36 +00:00
Dominique Leuenberger
71911290fa Accepting request 746227 from GNOME:Factory
- Add patches to fix coloring of symbolic icons (glgo#GNOME/librsvg#525):
  * 0001-croco.rs-Add-struct-definition-for-CRSimpleSel.patch
  * 0002-Compute-the-specificity-of-CSS-selectors.patch
  * 0003-525-Consider-specificity-when-applying-CSS-selector-.patch (forwarded request 746179 from favogt)

OBS-URL: https://build.opensuse.org/request/show/746227
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=95
2019-11-10 21:05:42 +00:00
1ccad9b44d Accepting request 746179 from home:favogt:branches:GNOME:Factory
- Add patches to fix coloring of symbolic icons (glgo#GNOME/librsvg#525):
  * 0001-croco.rs-Add-struct-definition-for-CRSimpleSel.patch
  * 0002-Compute-the-specificity-of-CSS-selectors.patch
  * 0003-525-Consider-specificity-when-applying-CSS-selector-.patch

OBS-URL: https://build.opensuse.org/request/show/746179
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=164
2019-11-07 10:54:08 +00:00
4c72e2f59a Accepting request 746056 from GNOME:Next
OBS-URL: https://build.opensuse.org/request/show/746056
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=163
2019-11-07 10:53:45 +00:00
Dominique Leuenberger
97f8032fa3 Accepting request 742530 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/742530
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=94
2019-10-30 13:39:57 +00:00
93df2e2bba Accepting request 742235 from GNOME:Next
Yet a resub, new upstream release

OBS-URL: https://build.opensuse.org/request/show/742235
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=161
2019-10-24 11:06:32 +00:00
Dominique Leuenberger
639c97956a Accepting request 738536 from GNOME:Factory
- Update to version 2.46.2:
  + Patterns and gradients reused across more than one element will
    only get resolved once now; this should make things marginally
    faster for patterns or gradients with fallbacks.
  + glgo#GNOME/librsvg#515: Librsvg now has limits on the number of
    loaded XML elements, and the number of referenced elements
    within an SVG document. This is to mitigate malicious SVGs
    which try to consume all memory, and those which try to consume
    an exponential amount of CPU time. (forwarded request 738457 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/738536
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=93
2019-10-17 11:07:04 +00:00
7bcd8af2e4 Accepting request 738457 from GNOME:Next
- Update to version 2.46.2:
  + Patterns and gradients reused across more than one element will
    only get resolved once now; this should make things marginally
    faster for patterns or gradients with fallbacks.
  + glgo#GNOME/librsvg#515: Librsvg now has limits on the number of
    loaded XML elements, and the number of referenced elements
    within an SVG document. This is to mitigate malicious SVGs
    which try to consume all memory, and those which try to consume
    an exponential amount of CPU time.

OBS-URL: https://build.opensuse.org/request/show/738457
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=159
2019-10-15 07:46:17 +00:00
5d81e5dd2a Accepting request 735907 from GNOME:Next
New stable release

OBS-URL: https://build.opensuse.org/request/show/735907
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=158
2019-10-08 12:20:07 +00:00
1ddfadfdac Accepting request 733016 from GNOME:Factory
Revert to what we had before the sub got rejected in Factory, seems needed to fix build for tango-icons

OBS-URL: https://build.opensuse.org/request/show/733016
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=157
2019-09-24 19:00:59 +00:00
286b209c76 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=156 2019-09-24 18:29:10 +00:00
c099dafc42 Tweak
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=155
2019-09-24 12:29:01 +00:00
ffb29707d6 Accepting request 731253 from GNOME:Next
We should be able to bump this package even if we do not bump the rest of GNOME yet.

- Update to version 2.46.0:
  + All of librsvg.so is now implemented in Rust! That is, except
    for a very thin wrapper over the public API functions.
    Hopefully we can remove this wrapper when Cargo gets some more
    features around controlling the linking step. This release
    requires at least Rust 1.34.
  + Librsvg now comes with a Rust crate that can be used from Rust
    applications. See librsvg_crate/examples. This Rust API is
    designed to be idiomatic; if you want a Rust binding to the
    shared library instead, please use the "rsvg-rs" crate from
    crates.io.
  + The following API functions are new in the C library:
    - rsvg_handle_get_intrinsic_dimensions()
    - rsvg_handle_render_document()
    - rsvg_handle_render_layer()
    - rsvg_handle_render_element()
    - rsvg_handle_get_geometry_for_layer()
    - rsvg_handle_get_geometry_for_element()
    - Correspondingly, there is a new chapter in the documentation,
      called "Recommendations for Applications". These new APIs
      conform better with the web platform's idea of how SVG
      sizing/positioning should work. Applications should now find
      it easier to scale and render SVGs in a single call, instead
      of having to obtain image dimensions first.
  + A bunch of functions have been deprecated but are still
    available:
    - rsvg_handle_write()/close() are deprecated in favor of the
      stream functions. Unfortunately the write()/close() pair
      require buffering the entire document, in case it is a .svgz
      compressed file; the streaming functions do not have this
      problem.
    - Functions that return RsvgDimensionData and RsvgPositionData
      are deprecated, since they just use integers instead of
      floating point numbers. They are replaced with the
      _get_geometry_*() functions above.
  + The library is a lot more strict now in terms of detecting that
    the API functions are called in the correct order. For example,
    calling rsvg_handle_get_dimensions() before rsvg_handle_close()
    will now emit a critical warning.
  + Librsvg is gradually moving towards using code from Mozilla's
    Servo. We haven't quite gotten rid of libcroco and libxml2 yet,
    but this is in progress.
- Update to version 2.45.92:
  + Fix glgo#GNOME/librsvg#496: Ensure all lengths and angles parse
    as finite numbers.
  + Fix glgo#GNOME/librsvg#497: Don't panic on paths with
    all-invalid commands.
  + Fix glgo#GNOME/librsvg#500: Added additional SVG blend-modes
    for the feBlend filter primitive.
  + Some changes in the build structure to allow for faster builds.
- Update to version 2.45.90:
  + New API functions:
    - rsvg_handle_render_document().
    - rsvg_handle_render_layer().
    - rsvg_handle_render_element().
    - rsvg_handle_get_geometry_for_layer().
    - rsvg_handle_get_geometry_for_element().
  + CairoRenderer in the librsvg_crate has corresponding functions
    as well.
  + Fix builds with gettext ≥ 0.20.
  + If the C API is called out of order, downgrade hard panics to
    g_critical() to cope with incorrect/old applications that
    called rsvg_handle_get_dimensions() before
    rsvg_handle_close().
  + API reference documentation is much improved.
- Update to version 2.45.8:
  + This version requires at least Rust 1.34.
  + Fix build on Rust earlier than 1.36.
  + Update gtk-rs and dependent crates.
- Changes from version 2.45.7:
  + Don't panic if an SVG has character data outside the first
    element.
  + Don't panic when there's an xi:include fallback with no parent
    element.
  + Fix blurry semi-opaque objects when rendering with a scaled
    transformation.
  + Don't ignore the first x/y/dx/dy in text/tspan elements if
    there is more than one position specified.
  + In librsvg_crate, SvgHandle now has a ::has_element_with_id()
    method.
  + rsvg-convert now catches the case where the SVG has no
    dimensions.
  + This version no longer contains the rsvg-view program, so
    librsvg no longer depends on GTK.
  + The poly element no longer supports "verts" as an alias for the
    "points" attribute. The "verts" name was only used in SVG
    pre-1.0, and we had been cargo-culting that name ever since.
  + We now use more machinery from Mozilla Servo, in this case the
    markup5ever and rust-selectors crates. This is in line with
    gradually replacing libcroco with a Rust-only CSS machinery.
  + Lots and lots of refactoring and cleanups: use the rctree crate
    instead of our own tree representation; remove interior
    mutability in element structs; make the gradients and patterns
    code less repetitive.
  + Update some dependencies.
  + Fix static linking and Windows builds.
- Drop rsvg-view subpackage and pkgconfig(gtk+-3.0) BuildRequires
  and obsolete it from main library following upstream changes.
- Add new rsvg-convert subpackage for the convert tool previously
  packaged in rsvg-view.
- Update to version 2.45.6:
  + Librsvg now requires Rust 1.30.0 or later.
  + Librsvg now requires Cairo 1.16.0 or later.
  + This version introduces librsvg_crate, an idiomatic Rust crate
    for using librsvg from Rust programs directly, without using
    GObject machinery. This API is subject to change, but you can
    start using it now in an experimental fashion.
  + All of the librsvg internals are now in Rust! The C code is
    just a thin wrapper over Rust functions.
  + The internals library has been converted to Rust 2018.
  + Within librsvg_crate, there is a new infrastructure for doing
    reftests in Rust, that does not depend on PNG reference files.
    See librsvg_crate/tests for details.
  + This release introduces the following new APIs:
    - rsvg_handle_get_intrinsic_dimensions(),
    - rsvg_handle_get_geometry_for_element().
  + Parsing of the "style" attribute, which has a plain list of CSS
    property declarations, is now done with rust-cssparser.
  + CSS selector matching should be marginally faster than before.
  + Fix Visual Studio builds.
  + Fix glgo#GNOME/librsvg#11: Respect the "direction" property for
    bidirectional text.
  + Fix glgo#GNOME/librsvg#295: Ensure the initial viewport fits
    into temporary surfaces for compositing.
  + Fix glgo#GNOME/librsvg#425: Don't fail parsing if the system's
    locale is broken.
  + Fix glgo#GNOME/librsvg#438, glgo#GNOME/librsvg#443: Don't
    create intermediate raster surfaces unless absolutely needed.
    This was causing blurred output for SVGs from Inkscape and
    Illustrator, since they include an "enable-background" property
    even when there are no filters in use.
  + Fix glgo#GNOME/librsvg#443: Fix blurry output when
    enable-background is used without filters.
  + Fix glgo#GNOME/librsvg#455: Fix rounding error on i386.
  + Check for Cairo errors when constructing paths.
- Update to version 2.45.5:
  + At build time, you can now pass $CARGO and $RUSTC environment
    variables if you need to override the default Rust toolchain.
    Please see COMPILING.md for details.
  + Fix glgo#GNOME/librsvg#405: In the gdk-pixbuf loader, don't
    crash if the write() function doesn't receive a GError.
  + Fix glgo#GNOME/librsvg#268: Remove the comp-op property; it's
    not in SVG 1.1 nor SVG 2.
  + Fix glgo#GNOME/librsvg#415: register RsvgHandleFlags and the
    RsvgError enum values in a thread-safe fashion.
  + All of the library's non-GObject functionality is implemented
    in Rust now.
  + Update the cairo crate.
  + Clean up the loading code paths.
  + Updated compilation docs for Debian.
  + Updated parts of the reference documentation.
- Update to version 2.45.4:
  + Fix glgo#GNOME/librsvg#402: Fix the library's soname.
- Update to version 2.45.3:
  + Big news! All the real work in the library is now implemented
    in Rust. The public API is implemented in C, but most it calls
    immediately into the Rust code.
  + rsvg_handle_set_base_uri() now really assumes that it is passed
    a URI. Previously it would try to differentiate between real
    URIs, and absolute or relative file paths. If this breaks your
    code (i.e. you are passing a filename, not a URI), please tell
    us so we can restore the old behavior!
  + Fix glgo#GNOME/librsvg#395: Don't panic in feMorphology if it
    ends up with a negative scaling transformation.
  + Fix glgo#GNOME/librsvg#398: Detect circular references in
    gradients.
  + Match the Firefox/Chrome behavior on gradients and patterns
    with circular references for fallbacks.
  + Fixes for Rust 1.30 and below.
  + Lots and lots of refactoring.
- Changes from version 2.45.2:
  + rsvg_cleaup() is now deprecated. This was only meant to be
    called from code to be checked by Valgrind. Leak checkers may
    show reachable memory from libxml2; real memory leaks should
    still be reported, of course.
  + As an experimental change, librsvg no longer calls
    xmlInitParser() from libxml2. Please tell us if this causes
    problems for multithreaded programs.
  + Added g_warning()s to ensure the API is called in the correct
    sequence.
  + The text handling code has been completely refactored and
    simplified. This will allow us to implement the x/y/dx/dy
    properties for multiple glyphs in the future. Please report any
    problems you experience in text rendering.
  + Fix glgo#GNOME/librsvg#385: Don't crash if there is no
    rsvg_handle_write() before rsvg_handle_close().
  + Fix glgo#GNOME/librsvg#391: Avoid undefined behavior when
    casting opaque pointers.
  + Fix crash when a linear RGB filter is followed by an SRGB
    filter.
  + Fix glgo#GNOME/librsvg#393: Stack overflow when freeing
    thousands of sibling elements.
  + Fix positioning of adjacent <tspan> elements.
  + All the toplevel loading and drawing code is implemented in
    Rust now.
  + Pixbuf conversion code is in Rust now.
  + Cleanups in the code for XML processing, markers, attributes.
  + Many build/link fixes.
  + Cleanups in the code that calls libxml2.
- Changes from version 2.45.1:
  + New public API, rsvg_handle_get_geometry_sub(), to get the
    exact geometry of an element. The functions
    rsvg_handle_get_position_sub() and
    rsvg_handle_get_dimensions_sub() are deprecated now; these
    returned incomplete data with integer coordinates.
  + rsvg_handle_write() and rsvg_handle_close() are now deprecated
    in favor of the functions which use a GInputStream. The former
    need to buffer the entire SVG data first; the latter don't need
    buffering.
  + Librsvg no longer tries to load XML entities which reference
    external resources, either parameter or general entities,
    declared in the DTD. This never worked properly, and it is
    better to do so via the xi:include mechanism. Also, unparsed
    external entities with a notation are not really supported in
    SVG; it has its own <image> element and similar for that
    purpose. Only internal general entities are supported now, for
    example:
    - <!ENTITY foo "<some xml here>">.
    - <!ENTITY bar "some text here">.
  + Started support for localized error messages.
  + Ported to Rust: loading code, XML processing code, data: URL
    parsing.
  + Many code cleanups and refactorings.
  + Fix undefined behavior in casts.
  + Cairo/Rust API updates.
  + configure.ac cleanups.
- Add lang_package macro/subpackage, librsvg now have translations.
- Add a librsvg_sover define and set it to 2.

OBS-URL: https://build.opensuse.org/request/show/731253
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=154
2019-09-19 15:22:18 +00:00
Dominique Leuenberger
190c9e4d5a Accepting request 728231 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/728231
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=92
2019-09-11 08:20:20 +00:00
55f00509f0 Accepting request 728154 from home:iznogood:branches:GNOME:Factory
New stable rel

OBS-URL: https://build.opensuse.org/request/show/728154
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=152
2019-09-04 09:00:44 +00:00
Dominique Leuenberger
51bcd90e27 Accepting request 703156 from GNOME:Factory
New stable rel, not buildtested (forwarded request 702813 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/703156
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=91
2019-05-17 21:40:10 +00:00
d6f099c4b9 Accepting request 702813 from home:iznogood:branches:GNOME:Factory
New stable rel, not buildtested

OBS-URL: https://build.opensuse.org/request/show/702813
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=150
2019-05-15 13:55:54 +00:00
Stephan Kulow
4fb835ff30 Accepting request 677817 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/677817
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=90
2019-02-28 20:26:19 +00:00
f44aa7745d Accepting request 676712 from home:iznogood:branches:GNOME:Factory
- Update to version 2.44.13:
  + Updated compilation docs for Debian.
  + Fix glgo#GNOME/librsvg#415: Register RsvgHandleFlags and the
    RsvgError enum values in a thread-safe fashion.

OBS-URL: https://build.opensuse.org/request/show/676712
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=148
2019-02-20 19:54:44 +00:00
Dominique Leuenberger
8ae61ee4a6 Accepting request 667740 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/667740
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=89
2019-01-26 21:17:22 +00:00
4b8df046b3 Accepting request 667668 from home:iznogood:branches:GNOME:Factory
New stable release

OBS-URL: https://build.opensuse.org/request/show/667668
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=146
2019-01-22 08:48:20 +00:00
Dominique Leuenberger
be3c1f9301 Accepting request 662638 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/662638
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=88
2019-01-05 13:39:33 +00:00
5163ce7f96 Accepting request 661993 from GNOME:Next
New stable release

OBS-URL: https://build.opensuse.org/request/show/661993
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=144
2019-01-03 10:52:58 +00:00
Dominique Leuenberger
9253a0eb77 Accepting request 657491 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/657491
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=87
2018-12-19 12:46:39 +00:00
9bdaa95c7e Accepting request 657315 from GNOME:Next
New stable release

OBS-URL: https://build.opensuse.org/request/show/657315
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=142
2018-12-12 10:07:45 +00:00
Dominique Leuenberger
2ecca1a18f Accepting request 648885 from GNOME:Factory
New stable release (forwarded request 648873 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/648885
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=86
2018-11-18 22:25:29 +00:00
6537c2fd92 Accepting request 648873 from GNOME:Next
New stable release

OBS-URL: https://build.opensuse.org/request/show/648873
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=140
2018-11-14 09:55:28 +00:00
Dominique Leuenberger
e204fc4ef9 Accepting request 639055 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/639055
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=85
2018-10-17 06:18:55 +00:00
0b354fdcec Accepting request 638994 from GNOME:Next
OBS-URL: https://build.opensuse.org/request/show/638994
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=138
2018-09-28 17:33:23 +00:00
b912b2651c Accepting request 638529 from GNOME:Next
OBS-URL: https://build.opensuse.org/request/show/638529
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=137
2018-09-27 07:40:17 +00:00
Yuchen Lin
8837f665fc Accepting request 633718 from GNOME:Factory
append Apache-2.0 and MIT licenses to main package's and librsvg-2-2 subpackage's License tags (forwarded request 633529 from luc14n0)

OBS-URL: https://build.opensuse.org/request/show/633718
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=84
2018-09-13 10:09:04 +00:00
963617a9b7 Accepting request 633529 from home:luc14n0:branches:GNOME:Factory
append Apache-2.0 and MIT licenses to main package's and librsvg-2-2 subpackage's License tags

OBS-URL: https://build.opensuse.org/request/show/633529
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=135
2018-09-06 11:15:09 +00:00
d369ba9515 Accepting request 632667 from home:iznogood
- Update to version 2.44.2:
  + Don't leak all the elements at the toplevel
    (glgo#GNOME/librsvg#325).
  + Make masking work on big-endian (glgo#GNOME/librsvg#328).
  + Fix library ordering so -Wl,--as-needed works.

OBS-URL: https://build.opensuse.org/request/show/632667
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=134
2018-09-03 04:21:52 +00:00
df202501bd Accepting request 632150 from GNOME:Next
New stable release

OBS-URL: https://build.opensuse.org/request/show/632150
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=133
2018-08-29 13:56:13 +00:00
b334ebe638 Accepting request 631205 from GNOME:Next
fwd for real, this should be fine in current 3.28 stack too.

OBS-URL: https://build.opensuse.org/request/show/631205
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=132
2018-08-24 17:43:25 +00:00
f61eca7952 Accepting request 631035 from home:iznogood
New stable rel

OBS-URL: https://build.opensuse.org/request/show/631035
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=131
2018-08-23 11:25:56 +00:00
Dominique Leuenberger
343f37d3ad Accepting request 628103 from GNOME:Factory
- Update to version 2.42.6:
  + Fix drop-shadows generated from Inkscape; we were overwriting
    a surface inadvertently (glgo#GNOME/librsvg#282).
  + Fix confusion between feSpotLight and feDistantLight
    (glgo#GNOME/librsvg#241).
  + Don't panic if we try to clip with an empty region
    (glgo#GNOME/librsvg#292).
  + Fix out-of-tree builds and tests.
  + Compilation can now use a RUST_TARGET variable to override the
    host triplet when cross-compiling. See COMPILING.md for
    details. (forwarded request 627974 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/628103
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=83
2018-08-10 07:44:36 +00:00
6fd09f9c45 Accepting request 627974 from home:iznogood:branches:GNOME:Factory
- Update to version 2.42.6:
  + Fix drop-shadows generated from Inkscape; we were overwriting
    a surface inadvertently (glgo#GNOME/librsvg#282).
  + Fix confusion between feSpotLight and feDistantLight
    (glgo#GNOME/librsvg#241).
  + Don't panic if we try to clip with an empty region
    (glgo#GNOME/librsvg#292).
  + Fix out-of-tree builds and tests.
  + Compilation can now use a RUST_TARGET variable to override the
    host triplet when cross-compiling. See COMPILING.md for
    details.

OBS-URL: https://build.opensuse.org/request/show/627974
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/librsvg?expand=0&rev=129
2018-08-08 13:14:58 +00:00
Dominique Leuenberger
2a3a1bc985 Accepting request 613926 from GNOME:Factory
New stable rel, not buildtested (forwarded request 613667 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/613926
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsvg?expand=0&rev=82
2018-06-05 10:51:36 +00:00