Compare commits

...
6 Commits
Author SHA1 Message Date
EnumDev eed1961e8f Update package version to 2.7.0 2026-09-04 15:57:58 +03:00
EnumDev ca9e7830ca Switch to new package format 2026-06-13 20:00:42 +03:00
EnumDev bc083b5f56 Update package version to 2.6.13 2026-03-15 11:34:06 +02:00
EnumDev e91a51cde2 Update .gitignore 2026-02-24 12:45:55 +02:00
EnumDev d47a0e7e68 Update license 2026-02-02 12:23:23 +02:00
EnumDev 4c6d72a6fb Fix dependencies 2026-02-02 12:22:12 +02:00
4 changed files with 11 additions and 7 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+1 -1
View File
@@ -3,7 +3,7 @@
URL="https://www.openldap.org/software/download/" URL="https://www.openldap.org/software/download/"
# Get version number from tag name # Get version number from tag name
VERSION=$(curl -s -L "$URL" | grep -o -E 'OpenLDAP-[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}') VERSION=$(curl -s -L "$URL" | grep -o -E 'OpenLDAP-[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}' | head -n1)
# Trim prefix # Trim prefix
VERSION=${VERSION//OpenLDAP-/} VERSION=${VERSION//OpenLDAP-/}
+6 -5
View File
@@ -1,20 +1,21 @@
name: openldap name: openldap
description: Open source implementation of the Lightweight Directory Access Protocol description: Open source implementation of the Lightweight Directory Access Protocol
version: 2.6.12 version: 2.7.0
revision: 1 revision: 1
url: https://www.openldap.org/ url: https://www.openldap.org/
license: custom license: OLDAP-2.0
maintainers: maintainers:
- [email protected] - [email protected]
architecture: any architecture: any
type: source type: source
depends: depends:
- libtool - libsasl
- perl
make_depends: make_depends:
- libtool
- unixodbc
- util-linux - util-linux
downloads: downloads:
- url: https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-${BPM_PKG_VERSION}.tgz - url: https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-${BPM_PKG_VERSION}.tgz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 1716ad779e85d743694c3e3b05277fb71b6a5eadca43c7a958aa62683b22208e checksum: 9e86f37da375aa948a1b478dd76fe87b02090e47c21facae19223588e3407922
+1 -1
View File
@@ -1,4 +1,4 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package # This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT