# HG changeset patch # User Hans-Günter Theisgen # Date 1554906798 -3600 # Node ID 6dfb0d97b97e280d1c3782a34114cbe0a824d798 # Parent 9480f04fa6842c143982ce2a87da73f49c1f2cf9 updated libgee and libgee-dev (0.9.92 -> 0.20.1) diff -r 9480f04fa684 -r 6dfb0d97b97e libgee-dev/receipt --- a/libgee-dev/receipt Wed Apr 10 14:03:51 2019 +0100 +++ b/libgee-dev/receipt Wed Apr 10 15:33:18 2019 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="libgee-dev" -VERSION="0.9.92" +VERSION="0.20.1" CATEGORY="development" -SHORT_DESC="GObject collection library devel files." +SHORT_DESC="GObject collection library - development files." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="http://live.gnome.org/Libgee" +WEB_SITE="https://live.gnome.org/Libgee" WANTED="libgee" DEPENDS="libgee pkg-config" @@ -15,10 +15,10 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/girepository* $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/share $fs/usr + + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/girepository* $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/share $fs/usr } - diff -r 9480f04fa684 -r 6dfb0d97b97e libgee/receipt --- a/libgee/receipt Wed Apr 10 14:03:51 2019 +0100 +++ b/libgee/receipt Wed Apr 10 15:33:18 2019 +0100 @@ -1,27 +1,27 @@ # SliTaz package receipt. PACKAGE="libgee" -VERSION="0.9.92" +VERSION="0.20.1" CATEGORY="x-window" SHORT_DESC="GObject collection library." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="http://live.gnome.org/Libgee" +WEB_SITE="https://live.gnome.org/Libgee" + TARBALL="$PACKAGE-$VERSION.tar.xz" -SERIES="$(echo $VERSION | cut -d. -f1,2)" -WGET_URL="$GNOME_MIRROR/$PACKAGE/$SERIES/$TARBALL" +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" DEPENDS="glib libffi" -BUILD_DEPENDS="bash vala gobject-introspection-dev sed glib-dev libffi-dev sed" +BUILD_DEPENDS="bash glib-dev gobject-introspection-dev libffi-dev vala" # Rules to configure and make the package. compile_rules() { sed -i 's|Func get_value|Func get_value|' gee/gee-0.8.vapi - ./configure \ - --enable-introspection=yes \ + ./configure \ + --enable-introspection=yes \ $CONFIGURE_ARGS && - make && + make -j 1 && make install }