• package: tis-ldapadminlaz
  • name: LDAPAdmin
  • version: 0.0.107-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.79 Mo
  • installed_size: 4.19 Mo
  • homepage : http://www.ldapadmin.org/

package           : tis-ldapadminlaz
version           : 0.0.107-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      : bb4bb2f5-0801-4876-bbfc-7c32f03affae
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 9e93ffd5187567f8204b5d50043295dd7842fffd1be163f047042c157762fcc4
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : lETyvO5WNxaP3FFCS33Y0b/6wpKUtHuuIPN34uZVsRLkW8ojxXGZ2heLTFSlPHIkYEdVMjDyKHATulW8D6gfs+e/G5n7tkjV09btlQVHcGXYyI2VBv634gsC5m6PMB5qzP//udyO08f7tR+s91sD8gmwnMsLz0IBaTSkvI1R9Fbv+ew/t13DET1e8KLVWkbPzwcZxTl75YshZzoN36U+Xi+Ah9CDcGyP2Zt4RuWH8TjkHnLwRXZL6H7l1/04JpUn69K52nsD3eu1FHZP4hUk+gEcX7NW5lfGhK3X4xz5DOcJAh/JsyVdP/aCTO/nK3dxVBqmJk5wRWV2U8/lDIQj1w==
signature_date    : 2024-09-02T13:05:51.872032
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

# -*- 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")

a2ad725630b15d50f2745da3190331b136e4da8e01ab23740b3d286216dd596e : setup.py
11c114eedf64f16468564e7dfbf01b4244ef5499252e3683f4f6942cd9efe64a : update_package.py
fa285854f20879f1e2726fc777221d540f3ee3286c3a766dd891bcd1a6fa2231 : LdapAdmin
9e93ffd5187567f8204b5d50043295dd7842fffd1be163f047042c157762fcc4 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
2bced8dc141272aa6f06f4b18f964a78d95e9cb1392ff17b342acf6fd3c33497 : WAPT/changelog.txt
2f0bf5c33afcb47a17ddbeac1e8770ff48f1af83980c6270be9bbdb4736e6c32 : luti.json
8d651ef3dc89d4b0e1b37598808745e62b1e99bc32a0771c2e04de5cbde3fad9 : ldapadmin.desktop
d62c218560010c3d9c7ee7400748d063a49b023cb035b4a7fd8c310774ae0e24 : WAPT/control

1.8.3
===
slipt update package