1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00

irc/bitlbee-facebook: update to latest commit, bump PORTREVISION

This fixes especially https://github.com/bitlbee/bitlbee-facebook/issues/138.

Reported by:	cognet
This commit is contained in:
Pietro Cerutti 2017-03-29 14:15:04 +00:00
parent 9c33a9eabd
commit 6d78b5bcdb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=437203
3 changed files with 6 additions and 32 deletions

View File

@ -4,7 +4,7 @@
PORTNAME= bitlbee-facebook
PORTVERSION= 1.0.0
DISTVERSIONPREFIX=v
PORTREVISION= 1
PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= irc
@ -22,7 +22,8 @@ USE_GNOME= glib20
GNU_CONFIGURE= yes
USE_GITHUB= yes
GH_ACCOUNT= bitlbee
GH_ACCOUNT= gahr
GH_TAGNAME= 20170329
MAKE_JOBS_UNSAFE= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1484122554
SHA256 (bitlbee-bitlbee-facebook-v1.0.0_GH0.tar.gz) = 20e0c41393be151735463b206625c91977706db144ff8ff1d4d726e1f33fd124
SIZE (bitlbee-bitlbee-facebook-v1.0.0_GH0.tar.gz) = 62389
TIMESTAMP = 1490796410
SHA256 (gahr-bitlbee-facebook-v1.0.0-20170329_GH0.tar.gz) = 0e7644f789b24570ce20cb96bd3fc21afee31c063bfc60d0586e5b8fc7ce37f4
SIZE (gahr-bitlbee-facebook-v1.0.0-20170329_GH0.tar.gz) = 65531

View File

@ -1,27 +0,0 @@
--- facebook/facebook.c.orig 2016-01-16 15:20:59 UTC
+++ facebook/facebook.c
@@ -1082,3 +1082,24 @@ init_plugin(void)
root_command_add("fbcreate", 0, fb_cmd_fbcreate, 0);
root_command_add("fbjoin", 0, fb_cmd_fbjoin, 0);
}
+
+
+#ifdef BITLBEE_ABI_VERSION_CODE
+G_MODULE_EXPORT struct plugin_info *
+init_plugin_info(void);
+
+G_MODULE_EXPORT struct plugin_info *
+init_plugin_info(void)
+{
+ static struct plugin_info info = {
+ BITLBEE_ABI_VERSION_CODE,
+ "facebook",
+ PACKAGE_VERSION,
+ "Facebook protocol plugin",
+ "dequis <dx@dxzone.com.ar> (maintainer), James Geboski <jgeboski@gmail.com> (original author)",
+ PACKAGE_URL
+ };
+
+ return &info;
+}
+#endif /* BITLBEE_ABI_VERSION_CODE */