commit a79c2a50cbc4d042ae65d4f3e39cfb5a458ad3b2 Author: Tim Biermann <tbier@posteo.de> Date: Wed Nov 11 08:26:45 2020 +0000 [notify] libnice: 0.1.17 -> 0.1.18; build system changed to meson/ninja, check revdep after updating diff --git a/libnice/.footprint b/libnice/.footprint index 283626048..4996d15c7 100644 --- a/libnice/.footprint +++ b/libnice/.footprint @@ -26,12 +26,10 @@ drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/girepository-1.0/ -rw-r--r-- root/root usr/lib/girepository-1.0/Nice-0.1.typelib drwxr-xr-x root/root usr/lib/gstreamer-1.0/ --rwxr-xr-x root/root usr/lib/gstreamer-1.0/libgstnice.la -rwxr-xr-x root/root usr/lib/gstreamer-1.0/libgstnice.so --rwxr-xr-x root/root usr/lib/libnice.la -lrwxrwxrwx root/root usr/lib/libnice.so -> libnice.so.10.10.0 -lrwxrwxrwx root/root usr/lib/libnice.so.10 -> libnice.so.10.10.0 --rwxr-xr-x root/root usr/lib/libnice.so.10.10.0 +lrwxrwxrwx root/root usr/lib/libnice.so -> libnice.so.10 +lrwxrwxrwx root/root usr/lib/libnice.so.10 -> libnice.so.10.11.0 +-rwxr-xr-x root/root usr/lib/libnice.so.10.11.0 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/nice.pc drwxr-xr-x root/root usr/share/ diff --git a/libnice/.signature b/libnice/.signature index 2fe82bb29..9551d8f80 100644 --- a/libnice/.signature +++ b/libnice/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF31yudrdU/Aqbg4MIHR76kScvNvFCVBB0BeZjjZk/XlHWGbArUKfL2pdUfF/XrrS/Fb9q8wvwg0W3xyG/j0egYQM= -SHA256 (Pkgfile) = f8b4c5dd7b3deefcb99160b0879f9af6941ec6d5a10f37ec289bff90e1d13a44 -SHA256 (.footprint) = c725664341bed086b25c194d2154f5fd583353a0f6a2e1d5cf6bcb0fddbdd1c6 -SHA256 (libnice-0.1.17.tar.gz) = 1952a0dec58b5c9ccc3f25193df4e2d1244cb382cac611b71e25afcd7b069526 +RWSagIOpLGJF35dCMQwyJkWkJnvWr/vdLK/hby5n+Rdooe1mBA4j1/PMqPEmqNxpHpyBLpvUHI8x37PC+lPm083zVXZvn7hhVwY= +SHA256 (Pkgfile) = 22dcb9ff3ae088020902941515b5541b1dddbc75fb0d4bf64a68fb3b69122cb3 +SHA256 (.footprint) = 22f029f00e78cdc75fab6fdf01c57c5d1013b12571e06b6a8f2be0b5d36d6a88 +SHA256 (libnice-0.1.18.tar.gz) = 5eabd25ba2b54e817699832826269241abaa1cf78f9b240d1435f936569273f4 diff --git a/libnice/Pkgfile b/libnice/Pkgfile index 12cb21343..c104fa397 100644 --- a/libnice/Pkgfile +++ b/libnice/Pkgfile @@ -4,21 +4,17 @@ # Depends on: gstreamer name=libnice -version=0.1.17 +version=0.1.18 release=1 source=(https://nice.freedesktop.org/releases/$name-$version.tar.gz) build() { - cd $name-$version - - ./configure \ + meson setup $name-$version build \ --prefix=/usr \ - --enable-gtk-doc=no \ - --enable-gtk-doc-html=no - - make - make DESTDIR=$PKG install + --buildtype=plain \ + -D b_ndebug=true \ + -D gtk_doc=disabled - # gtk-doc is still generated! - rm -r $PKG/usr/share/gtk-doc + meson compile -C build + DESTDIR=$PKG meson install -C build }