Downloads:
9,129
Downloads of v 0.9.6.166:
1,235
Last Update:
02 Feb 2019
Package Maintainer(s):
Software Author(s):
- James Geboski
Tags:
purple facebook libpurple pidgin chat im- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Purple Facebook
- 1
- 2
- 3
0.9.6.166 | Updated: 02 Feb 2019
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
9,129
Downloads of v 0.9.6.166:
1,235
Maintainer(s):
Software Author(s):
- James Geboski
Purple Facebook 0.9.6.166
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by James Geboski. The inclusion of James Geboski trademark(s), if any, upon this webpage is solely to identify James Geboski goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Purple Facebook, run the following command from the command line or from PowerShell:
To upgrade Purple Facebook, run the following command from the command line or from PowerShell:
To uninstall Purple Facebook, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download purple-facebook --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade purple-facebook -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade purple-facebook -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install purple-facebook
win_chocolatey:
name: purple-facebook
version: '0.9.6.166'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'purple-facebook' do
action :install
source 'INTERNAL REPO URL'
version '0.9.6.166'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller purple-facebook
{
Name = "purple-facebook"
Version = "0.9.6.166"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'purple-facebook':
ensure => '0.9.6.166',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 13 Nov 2024.
Purple Facebook implements the Facebook Messenger protocol into pidgin, finch, and libpurple. While the primary implementation is for purple3, this plugin is back-ported for purple2.
The purple-facebook plugin is a replacement for the builtin Facebook XMPP plugin. Facebook is in the process of shutting down their XMPP service, which will inevitably break existing support.
As part of Google Summer of Code (GSoC) 2015, jgeboski worked on a plugin for libpurple to support the newer Facebook Messenger protocol. The plugin is implemented for the development version of libpurple, purple3, which has yet to be released. The purple-facebook project simply back-ports the purple3 plugin to purple2, which is the released version of libpurple.
As of October 18, 2015, jgeboski's GSoC work was merged into the mainline Pidgin project. It will appear in the next major release of Pidgin.
https://github.com/jgeboski/purple-facebook/wiki
**Notes from the Chocolatey package owner(s):
-The purple-facebook project adds support for the Facebook Messenger protocol in pidgin, finch, and libpurple, but this Chocolatey package is for adding Facebook Messenger support for pidgin, specifically.
$package_name = 'purple-facebook'
$libjson_filename = 'libjson-glib-1.0.dll'
$libfb_filename = 'libfacebook.dll'
# Find the Pidgin install directory so that the plugin DLLs can be removed the appropriate location
$pidgin_subdir = 'Pidgin'
$pidgin_plugin_subdir = 'plugins'
$pidgin_file = 'pidgin.exe'
$pidgin_path = ''
if (Test-Path "${Env:ProgramFiles(x86)}\$pidgin_subdir\$pidgin_file")
{
$pidgin_path = "${Env:ProgramFiles(x86)}\$pidgin_subdir\"
}
elseif (Test-Path "${Env:ProgramFiles}\$pidgin_subdir\$pidgin_file")
{
$pidgin_path = "${Env:ProgramFiles}\$pidgin_subdir\"
}
if (!$pidgin_path)
{
throw 'Could not find Pidgin install directory to install purple-facebook plugin'
}
# Remove libjson-glib & libfacebook DLLs from the appropriate locations
$libjson_fullpath = Join-Path $pidgin_path $libjson_filename
Remove-Item $libjson_fullpath
$libfb_fullpath = Join-Path (Join-Path $pidgin_path $pidgin_plugin_subdir) $libfb_filename
Remove-Item $libfb_fullpath
Log in or click on link to see number of positives.
- purple-facebook.0.9.6.166.nupkg (12e70ad966dc) - ## / 60
- libfacebook.dll (4a92cbcefd49) - ## / 69
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Purple Facebook 0.9.6.166 | 1235 | Saturday, February 2, 2019 | Approved | |
Purple Facebook 0.9.5.145 | 374 | Sunday, November 25, 2018 | Approved | |
Purple Facebook 0.9.5.137 | 654 | Wednesday, October 18, 2017 | Approved | |
Purple Facebook 0.9.5.135 | 442 | Tuesday, September 26, 2017 | Approved | |
Purple Facebook 0.9.4.128 | 483 | Saturday, June 10, 2017 | Approved | |
Purple Facebook 0.9.3.126 | 459 | Friday, March 31, 2017 | Approved | |
Purple Facebook 0.0.0.011700 | 507 | Friday, December 23, 2016 | Approved | |
Purple Facebook 0.0.0.011600 | 483 | Saturday, October 15, 2016 | Approved | |
Purple Facebook 0.0.0.011001 | 462 | Sunday, August 21, 2016 | Approved | |
Purple Facebook 0.0.0.011000 | 459 | Monday, May 9, 2016 | Approved | |
Purple Facebook 0.0.0.010900 | 416 | Thursday, February 25, 2016 | Approved | |
Purple Facebook 0.0.0.010700 | 385 | Sunday, February 14, 2016 | Approved | |
Purple Facebook 0.0.0.010600 | 391 | Friday, January 29, 2016 | Approved | |
Purple Facebook 0.0.0.010000 | 402 | Saturday, January 23, 2016 | Approved | |
Purple Facebook 0.0.0.009900 | 373 | Sunday, January 17, 2016 | Approved | |
Purple Facebook 0.0.0.002400 | 410 | Thursday, October 22, 2015 | Approved | |
Purple Facebook 0.0.0.002300 | 394 | Wednesday, October 7, 2015 | Approved | |
Purple Facebook 0.0.0.002200 | 403 | Wednesday, September 9, 2015 | Approved | |
Purple Facebook 0.0.0.001400 | 397 | Saturday, August 22, 2015 | Approved |
Free Software Foundation
Ground Rules:
- This discussion is only about Purple Facebook and the Purple Facebook package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Purple Facebook, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.