Downloads:
4,811
Downloads of v 3.85.0:
12
Last Update:
12 Nov 2024
Package Maintainer(s):
Software Author(s):
- Paulo Moura
Tags:
logtalk logic-programming prolog oop declarative-language declarative-programming- 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
Logtalk
- 1
- 2
- 3
3.85.0 | Updated: 12 Nov 2024
- 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:
4,811
Downloads of v 3.85.0:
12
Maintainer(s):
Software Author(s):
- Paulo Moura
Logtalk 3.85.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Paulo Moura. The inclusion of Paulo Moura trademark(s), if any, upon this webpage is solely to identify Paulo Moura 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 Logtalk, run the following command from the command line or from PowerShell:
To upgrade Logtalk, run the following command from the command line or from PowerShell:
To uninstall Logtalk, 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 logtalk --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 logtalk -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 logtalk -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 logtalk
win_chocolatey:
name: logtalk
version: '3.85.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'logtalk' do
action :install
source 'INTERNAL REPO URL'
version '3.85.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller logtalk
{
Name = "logtalk"
Version = "3.85.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'logtalk':
ensure => '3.85.0',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 12 Nov 2024.
Logtalk is a declarative object-oriented logic programming language that extends and leverages the Prolog language with modern code encapsulation and code reuse mechanisms while also providing improved predicate semantics.
Implemented as a trans-compiler in highly portable, extensively tested, and well documented code, it can use most modern and standards compliant Prolog implementations as a backend compiler.
As a multi-paradigm language, it includes support for modules, prototypes, classes, protocols (interfaces), categories (components and hot patching), event-driven programming, and high-level multi-threading programming. Distributed under a commercial friendly license, it includes full documentation, portable libraries, portable developer tools, and a large number of programming examples to help get you started.
Package Parameters
/DIR
- Installation directory (default is "C:\Program Files (x86)\Logtalk")
Example: choco install logtalk --params "'/DIR=%ChocolateyInstall%\lib\'"
Notes
- The backend Prolog compilers you intend to use must be installed before installing Logtalk.
$packageName = 'logtalk'
$installerType = 'EXE'
$silentArgs = '/SILENT'
$validExitCodes = @(0,1)
try {
# HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Logtalk_is1
$file = (Get-ItemProperty -Path "hklm:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Logtalk_is1").UninstallString
Uninstall-ChocolateyPackage -PackageName $packageName -FileType $installerType -SilentArgs $silentArgs -validExitCodes $validExitCodes -File $file
} catch {
throw
}
Log in or click on link to see number of positives.
- logtalk.3.85.0.nupkg (3749d3a407bc) - ## / 64
- logtalk-3.85.0.exe (4c428749b523) - ## / 68
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 |
---|---|---|---|---|
Logtalk 3.85.0 | 12 | Tuesday, November 12, 2024 | Approved | |
Logtalk 3.84.0 | 19 | Tuesday, October 22, 2024 | Approved | |
Logtalk 3.83.0 | 20 | Tuesday, September 24, 2024 | Approved | |
Logtalk 3.82.0 | 25 | Tuesday, August 20, 2024 | Approved | |
Logtalk 3.81.0 | 28 | Tuesday, July 16, 2024 | Approved | |
Logtalk 3.80.0 | 48 | Tuesday, June 4, 2024 | Approved | |
Logtalk 3.79.0 | 34 | Wednesday, May 15, 2024 | Approved | |
Logtalk 3.78.0 | 25 | Monday, May 6, 2024 | Approved | |
Logtalk 3.77.0 | 42 | Tuesday, April 2, 2024 | Approved | |
Logtalk 3.76.0 | 25 | Tuesday, March 19, 2024 | Approved | |
Logtalk 3.75.0 | 34 | Tuesday, February 27, 2024 | Approved | |
Logtalk 3.74.0 | 50 | Wednesday, January 31, 2024 | Approved | |
Logtalk 3.73.0 | 48 | Tuesday, December 12, 2023 | Approved | |
Logtalk 3.72.0 | 48 | Thursday, November 9, 2023 | Approved | |
Logtalk 3.71.0 | 52 | Thursday, October 12, 2023 | Approved | |
Logtalk 3.70.0 | 56 | Monday, September 18, 2023 | Approved | |
Logtalk 3.69.0 | 46 | Monday, August 21, 2023 | Approved | |
Logtalk 3.68.0 | 64 | Tuesday, July 25, 2023 | Approved | |
Logtalk 3.67.0 | 46 | Tuesday, July 4, 2023 | Approved | |
Logtalk 3.66.0 | 49 | Tuesday, May 30, 2023 | Approved | |
Logtalk 3.65.0 | 39 | Thursday, April 27, 2023 | Approved | |
Logtalk 3.64.0 | 53 | Tuesday, March 28, 2023 | Approved | |
Logtalk 3.63.0 | 45 | Monday, February 27, 2023 | Approved | |
Logtalk 3.62.0 | 49 | Tuesday, January 31, 2023 | Approved | |
Logtalk 3.61.0 | 49 | Tuesday, December 20, 2022 | Approved | |
Logtalk 3.60.0 | 55 | Tuesday, November 15, 2022 | Approved | |
Logtalk 3.59.0 | 67 | Tuesday, October 18, 2022 | Approved | |
Logtalk 3.58.0 | 52 | Tuesday, September 27, 2022 | Approved | |
Logtalk 3.57.0 | 60 | Tuesday, July 26, 2022 | Approved | |
Logtalk 3.56.0 | 79 | Wednesday, June 8, 2022 | Approved | |
Logtalk 3.55.0 | 64 | Thursday, April 28, 2022 | Approved | |
Logtalk 3.54.0 | 79 | Tuesday, March 22, 2022 | Approved | |
Logtalk 3.53.0 | 83 | Thursday, January 20, 2022 | Approved | |
Logtalk 3.52.0 | 85 | Tuesday, December 7, 2021 | Approved | |
Logtalk 3.51.0 | 92 | Tuesday, October 26, 2021 | Approved | |
Logtalk 3.50.0 | 97 | Tuesday, August 31, 2021 | Approved | |
Logtalk 3.49.0 | 132 | Tuesday, July 27, 2021 | Approved | |
Logtalk 3.48.0 | 158 | Tuesday, July 6, 2021 | Approved | |
Logtalk 3.47.0 | 103 | Tuesday, June 1, 2021 | Approved | |
Logtalk 3.46.0 | 89 | Tuesday, May 4, 2021 | Approved | |
Logtalk 3.45.0 | 114 | Tuesday, March 23, 2021 | Approved | |
Logtalk 3.44.0 | 117 | Wednesday, February 3, 2021 | Approved | |
Logtalk 3.43.0 | 118 | Tuesday, December 22, 2020 | Approved | |
Logtalk 3.42.0 | 146 | Monday, October 26, 2020 | Approved | |
Logtalk 3.41.0 | 163 | Monday, August 31, 2020 | Approved | |
Logtalk 3.40.0 | 174 | Wednesday, July 29, 2020 | Approved | |
Logtalk 3.39.0 | 156 | Wednesday, June 17, 2020 | Approved | |
Logtalk 3.38.0 | 189 | Tuesday, April 28, 2020 | Approved | |
Logtalk 3.37.0 | 196 | Thursday, April 2, 2020 | Approved | |
Logtalk 3.36.0 | 217 | Tuesday, March 3, 2020 | Approved | |
Logtalk 3.35.0 | 195 | Thursday, January 30, 2020 | Approved | |
Logtalk 3.34.0 | 191 | Tuesday, January 7, 2020 | Approved | |
Logtalk 3.33.0 | 174 | Tuesday, December 3, 2019 | Approved | |
Logtalk 3.32.0 | 187 | Tuesday, November 5, 2019 | Approved | |
Logtalk 3.31.0 | 173 | Thursday, October 24, 2019 | Approved |
1998-2024 Paulo Moura
-
- chocolatey (≥ 0.10.8)
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about Logtalk and the Logtalk 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 Logtalk, 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.