
- package: tis-ldapadminlaz
- name: LDAPAdmin
- version: 0.0.108-35
- categories: Utilities,Security,System and network
- maintainer: WAPT Team,Tranquil IT,Simon Fonteneau,Gaëtan SEGAT
- licence: GNU General Public License
- locale: all
- target_os: linux
- impacted_process: ldapadmin
- architecture: x64
- signature_date:
- size: 3.78 Mo
- installed_size: 4.19 Mo
- homepage : http://www.ldapadmin.org/
package : tis-ldapadminlaz
version : 0.0.108-35
architecture : x64
section : base
priority : optional
name : LDAPAdmin
categories : Utilities,Security,System and network
maintainer : WAPT Team,Tranquil IT,Simon Fonteneau,Gaëtan SEGAT
description : Ldap Admin is a free Windows LDAP client and administration tool for LDAP directory management.
depends :
conflicts :
maturity : PROD
locale : all
target_os : linux
min_wapt_version : 2.0
sources : https://github.com/ibv/LDAP-Admin
installed_size : 4194304
impacted_process : ldapadmin
description_fr : Ldap Admin est un client LDAP Windows opensource et un outil d’administration pour la gestion des annuaires LDAP.
description_pl : Ldap Admin to darmowe narzędzie klienckie i administracyjne LDAP dla systemu Windows do zarządzania katalogami LDAP
description_de : Ldap Admin ist ein kostenloser Windows LDAP Client und Administrationswerkzeug für LDAP Verzeichnisverwaltung
description_es : Ldap Admin es una herramienta de administración y cliente LDAP de Windows gratuita para la administración de directorios LDAP
description_pt : Ldap Admin é um cliente Windows LDAP gratuito e uma ferramenta de administração para a gestão de directórios LDAP
description_it : Ldap Admin è un client LDAP gratuito per Windows e uno strumento di amministrazione per la gestione delle directory LDAP
description_nl : Ldap Admin is een gratis Windows LDAP-client en beheertool voor het beheer van LDAP-directory’s
description_ru : Ldap Admin - это бесплатный клиент LDAP для Windows и инструмент администрирования для управления каталогами LDAP
audit_schedule :
editor :
keywords : ldap
licence : GNU General Public License
homepage : http://www.ldapadmin.org/
package_uuid : a9195ba2-8935-4d31-9a73-8e1dba3af3ff
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 9e93ffd5187567f8204b5d50043295dd7842fffd1be163f047042c157762fcc4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-02-08T14:00:11.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : xBJ9pzNjAk7wawQeDU8JqUcdUZGfIvr2ejmIPXkBfYvH1vrhlu4Kd6tGa/L7Clsrhput+OomIFgt+2u3hXmJw8GEbYR8DzT6og888OnBJBQuB8ixyW39t5o6StYqqXuxzi8d/UGnQMysAuo9OZPWNF8xkbOkS47ou3ndtxnx/WKTQlNCY8T8yPSzoAo6WYXv5rYVdRAqtBMaqK+kt0vxXaaO3udy8+PGVZAswOgGLFERc9MrAhjZitwBNtkhxB9sHiWo2fdt2M31VJDM8u0wxhj2ABsM0Zzw/+GbzexRqUEBw3Shbmy62lqLc+ZAOtB7D0AB77ZUHtpGlOB/4rm+dw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
mkdirs("/opt/ldapadmin")
filecopyto("LdapAdmin", "/opt/ldapadmin/LdapAdmin")
run("chmod 755 /opt/ldapadmin/LdapAdmin")
filecopyto('WAPT/icon.png','/opt/ldapadmin/ldapadmin.png')
filecopyto('ldapadmin.desktop',"/opt/ldapadmin/ldapadmin.desktop")
run('ln -sf "/opt/ldapadmin/ldapadmin.desktop" "/usr/share/applications/ldapadmin.desktop"')
def uninstall():
remove_file("/usr/share/applications/ldapadmin.desktop")
remove_tree("/opt/ldapadmin")
def audit():
if not isfile("/opt/ldapadmin/LdapAdmin"):
print("erreur file not found")
return "ERROR"
else:
return "OK"
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Compile
mkdirs("/var/build")
run("git clone https://github.com/ibv/LDAP-Admin.git /var/build")
run(r'git -C /var/build submodule update --progress --init -- "submodules/mORMot2"')
update_apt()
install_apt("mingw-w64")
install_apt("binutils-mingw-w64")
wget('https://synopse.info/files/mormot2static.7z','mormot2static.7z')
run('7zz x -y mormot2static.7z -ostatic')
remove_tree(r'/var/build/submodules/mORMot2/static')
os.rename('static',r'/var/build/submodules/mORMot2/static')
remove_file('mormot2static.7z')
run('lazbuild --add-package-link /var/build/submodules/mORMot2/packages/lazarus/mormot2.lpk ')
run("ln -s /usr/bin/x86_64-w64-mingw32-windres /usr/bin/windres")
version = "0.0.%s" % run(r"git -C /var/build rev-list --count master").strip()
control.version = "%s-%s" % (version, control.version.split("-", 1)[-1])
control.save_control_to_wapt()
run("lazbuild /var/build/Source/LdapAdmin.lpi ")
# WAPT PAckage prepare
filecopyto("/var/build/Source/LdapAdmin", "LdapAdmin")
e9d7370d61454d2642e665d048c5e58448d983c1cdc4124b673f8e17b6620e63 : LdapAdmin
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2bced8dc141272aa6f06f4b18f964a78d95e9cb1392ff17b342acf6fd3c33497 : WAPT/changelog.txt
98d65817f9ad60e439e61a44a6ae816fbd01fad7d997025fa4e949369f8715d1 : WAPT/control
9e93ffd5187567f8204b5d50043295dd7842fffd1be163f047042c157762fcc4 : WAPT/icon.png
8d651ef3dc89d4b0e1b37598808745e62b1e99bc32a0771c2e04de5cbde3fad9 : ldapadmin.desktop
18daf2725c6f7f5a7e8e1033eec5d91d625be906e73a8f1824d69362f79bc6cb : luti.json
a2ad725630b15d50f2745da3190331b136e4da8e01ab23740b3d286216dd596e : setup.py
11c114eedf64f16468564e7dfbf01b4244ef5499252e3683f4f6942cd9efe64a : update_package.py
1.8.3
===
slipt update package