update net/profanity to 0.13.1
bugfix release: - fixed configure parameter detection (upstreamed) - improve plugins management - fix build with plugins enabled for python >= 3.11 - add `gruvbox_transparent' theme - fix detection for welcome screen - improve opnening of URLs by spawning external programs asynchronously
This commit is contained in:
parent
36c6668520
commit
30dde110bd
@ -1,5 +1,5 @@
|
||||
COMMENT = console based XMPP client
|
||||
DISTNAME = profanity-0.13.0
|
||||
DISTNAME = profanity-0.13.1
|
||||
CATEGORIES = net
|
||||
|
||||
HOMEPAGE = https://profanity-im.github.io/
|
||||
@ -13,11 +13,11 @@ PERMIT_PACKAGE = Yes
|
||||
|
||||
MASTER_SITES = https://profanity-im.github.io/tarballs/
|
||||
|
||||
WANTLIB += X11 Xext Xss assuan c crypto curl curses ereadline
|
||||
WANTLIB += expat ffi gcrypt gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0
|
||||
WANTLIB += gpg-error gpgme iconv intl m nghttp2 otr pcre pthread
|
||||
WANTLIB += ${MODPY_WANTLIB} qrencode signal-protocol-c sqlite3 ssl
|
||||
WANTLIB += strophe util xcb z
|
||||
WANTLIB += assuan c crypto curl curses ereadline expat ffi gcrypt
|
||||
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gpg-error
|
||||
WANTLIB += gpgme iconv intl m nghttp2 otr pcre pthread ${MODPY_WANTLIB}
|
||||
WANTLIB += qrencode signal-protocol-c sqlite3 ssl strophe util
|
||||
WANTLIB += z
|
||||
|
||||
MODULES += lang/python
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (profanity-0.13.0.tar.gz) = elYs1LpwOjnlyqbwCgHFoJ/lHbIKc4hfVrI7w/gvxJI=
|
||||
SIZE (profanity-0.13.0.tar.gz) = 903454
|
||||
SHA256 (profanity-0.13.1.tar.gz) = K1B1Jy5+ydnJkVQuWSsdR0//iMYcZufiMJatMG7SyEo=
|
||||
SIZE (profanity-0.13.1.tar.gz) = 903811
|
||||
|
@ -1,6 +1,5 @@
|
||||
Use ${MODPY_VERSION} to pick up the correct python .pc file
|
||||
Use ${LOCALBASE} instead of hard-coded /usr/local
|
||||
fix typo: the variable is `enable_gdk_pixbuf' not `enable_pixbuf'
|
||||
|
||||
Index: configure.ac
|
||||
--- configure.ac.orig
|
||||
@ -28,17 +27,3 @@ Index: configure.ac
|
||||
AC_SUBST(AM_LDFLAGS)])],
|
||||
|
||||
[AC_CHECK_LIB([readline], [main], [],
|
||||
@@ -311,11 +311,11 @@ if test "x$enable_otr" != xno; then
|
||||
fi
|
||||
|
||||
dnl feature: pixbuf / used for scaling avatars before uploading via `/avatar set`
|
||||
-AS_IF([test "x$enable_pixbuf" != xno],
|
||||
+AS_IF([test "x$enable_gdk_pixbuf" != xno],
|
||||
[PKG_CHECK_MODULES([gdk_pixbuf], [gdk-pixbuf-2.0 >= 2.4],
|
||||
[AC_DEFINE([HAVE_PIXBUF], [1], [gdk-pixbuf module])
|
||||
LIBS="$gdk_pixbuf_LIBS $LIBS" CFLAGS="$gdk_pixbuf_CFLAGS $CFLAGS"],
|
||||
- [AS_IF([test "x$enable_pixbuf" = xyes],
|
||||
+ [AS_IF([test "x$enable_gdk_pixbuf" = xyes],
|
||||
[AC_MSG_ERROR([gdk-pixbuf-2.0 >= 2.4 is required to scale avatars before uploading])],
|
||||
[AC_MSG_NOTICE([gdk-pixbuf-2.0 >= 2.4 not found, GDK Pixbuf support not enabled])])])])
|
||||
|
||||
|
@ -123,6 +123,7 @@ share/profanity/themes/boothj5_slack
|
||||
share/profanity/themes/complex
|
||||
share/profanity/themes/forest
|
||||
share/profanity/themes/gruvbox
|
||||
share/profanity/themes/gruvbox_transparent
|
||||
share/profanity/themes/hacker
|
||||
share/profanity/themes/headache
|
||||
share/profanity/themes/irssi
|
||||
|
Loading…
Reference in New Issue
Block a user