Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion animation-glib/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

api_version = '0'
api_version = '1'

animation_glib_toplevel_headers = ['vector.h']
animation_glib_toplevel_introspectable_sources = ['vector.cpp']
Expand Down
2 changes: 1 addition & 1 deletion animation/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#
# Build the libanimation library.

api_version = '0'
api_version = '1'

animation_sources = []
animation_headers = []
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
libanimation (1.0.0) eos; urgency=medium

* Introduce pointers in order to allow gjs object mapping
* Break the ABI so bump the soname

-- Sam Spilsbury <sam@endlessm.com> Thu, 09 Aug 2018 02:26:53 +0800

libanimation (0.0.0) eos; urgency=medium

* debian/control
Expand Down
19 changes: 7 additions & 12 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -18,45 +18,40 @@ Vcs-Git: git://github.com/endless/libanimation.git
Package: libanimation-dev
Section: libdevel
Architecture: any
Depends: libanimation0 (= ${binary:Version}),
Depends: libanimation1 (= ${binary:Version}),
Description: 2D Surfaces Animations (C++ API) headers
2D Surfaces Animations (C++ API) headers
Replaces: libwobbly-dev (<= 0.3.2)

Package: libanimation0
Package: libanimation1
Section: libs
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends}
Description: 2D Surfaces Animations library (C++ API)
2D Surfaces Animations library
Replaces: libwobbly0 (<= 0.3.2)

Package: libanimation-glib0
Package: libanimation-glib1
Section: libs
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
libanimation0 (= ${binary:Version})
libanimation1 (= ${binary:Version})
Description: 2D Surfaces Animations library (GLib API)
2D Surfaces Animations library
Replaces: libwobbly-glib0 (<= 0.3.2)

Package: libanimation-glib-dev
Section: libs
Architecture: any
Depends: libanimation-glib0 (= ${binary:Version}),
Depends: libanimation-glib1 (= ${binary:Version}),
Description: 2D Surfaces Animations (GLib API) headers
2D Surfaces Animations (GLib API) headers
Replaces: libwobbly-glib-dev (<= 0.3.2)

Package: gir1.2-animation-glib-0
Package: gir1.2-animation-glib-1
Section: non-free/libs
Architecture: any
Depends: ${gir:Depends},
${misc:Depends},
${shlibs:Depends},
libanimation-glib0 (= ${binary:Version})
libanimation-glib1 (= ${binary:Version})
Description: 2D Surfaces Animations library (GObject Introspection) files
2D Surfaces Animations library (GObject Introspection) files
Replaces: gir1.2-libwobbly-glib0 (<= 0.3.2)
1 change: 0 additions & 1 deletion debian/gir1.2-animation-glib-0.install

This file was deleted.

2 changes: 1 addition & 1 deletion debian/libanimation-dev.install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
usr/include/animation/*
usr/lib/*/libanimation.so
usr/lib/*/pkgconfig/libanimation-0.pc
usr/lib/*/pkgconfig/libanimation-1.pc
4 changes: 2 additions & 2 deletions debian/libanimation-glib-dev.install
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
usr/include/animation-glib/*
usr/lib/*/libanimation-glib.so
usr/lib/*/pkgconfig/libanimation-glib-0.pc
usr/share/gir-1.0/Animation-0.gir
usr/lib/*/pkgconfig/libanimation-glib-1.pc
usr/share/gir-1.0/Animation-1.gir
1 change: 0 additions & 1 deletion debian/libanimation-glib0.install

This file was deleted.

1 change: 0 additions & 1 deletion debian/libanimation0.dirs

This file was deleted.

1 change: 0 additions & 1 deletion debian/libanimation0.install

This file was deleted.

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

project('libanimation', 'cpp',
version: '0.0.0',
version: '1.0.0',
default_options : ['cpp_std=c++17'],
license: 'LGPL2+',
meson_version: '>= 0.40.0')
Expand Down