
pdf arranger
Paquet d’installation silencieuse pour pdf arranger
1.12.1-3
- package: tis-pdfarranger
- name: pdf arranger
- version: 1.12.1-3
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: GPL-3.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 44.69 Mo
- homepage : https://github.com/pdfarranger/pdfarranger
package : tis-pdfarranger
version : 1.12.1-3
architecture : x64
section : base
priority : optional
name : pdf arranger
categories :
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : pdfarranger is a small python-gtk application, which helps the user to merge or split pdf documents and rotate, crop and rearrange their pages using an interactive and intuitive graphical interface. It is a frontend for pikepdf
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : pdfarranger est une petite application python-gtk, qui aide l'utilisateur à fusionner ou à diviser des documents pdf et à faire pivoter, recadrer et réorganiser leurs pages à l'aide d'une interface graphique interactive et intuitive. Il s'agit d'un frontal pour pikepdf
description_pl : pdfarranger to niewielka aplikacja python-gtk, która pomaga użytkownikowi łączyć lub dzielić dokumenty pdf oraz obracać, przycinać i zmieniać kolejność ich stron za pomocą interaktywnego i intuicyjnego interfejsu graficznego. Jest to nakładka na pikepdf
description_de : pdfarranger ist eine kleine Python-GTK-Anwendung, die dem Benutzer hilft, PDF-Dokumente zusammenzuführen oder aufzuteilen und ihre Seiten zu drehen, zu beschneiden und neu anzuordnen, indem sie eine interaktive und intuitive grafische Oberfläche verwendet. Es ist ein Frontend für pikepdf
description_es : pdfarranger es una pequeña aplicación python-gtk, que ayuda al usuario a combinar o dividir documentos pdf y rotar, recortar y reorganizar sus páginas utilizando una interfaz gráfica interactiva e intuitiva. Es un frontend para pikepdf
description_pt : O pdfarranger é uma pequena aplicação python-gtk, que ajuda o utilizador a fundir ou dividir documentos pdf e a rodar, cortar e reorganizar as suas páginas usando uma interface gráfica interactiva e intuitiva. É um frontend para o pikepdf
description_it : pdfarranger è una piccola applicazione python-gtk che aiuta l'utente a unire o dividere documenti pdf e a ruotare, ritagliare e riorganizzare le loro pagine utilizzando un'interfaccia grafica interattiva e intuitiva. Si tratta di un frontend per pikepdf
description_nl : pdfarranger is een kleine python-gtk applicatie die de gebruiker helpt bij het samenvoegen of splitsen van pdf-documenten en het roteren, bijsnijden en herschikken van de pagina's met behulp van een interactieve en intuïtieve grafische interface. Het is een frontend voor pikepdf
description_ru : pdfarranger - это небольшое python-gtk-приложение, которое помогает пользователю объединять или разделять pdf-документы, а также поворачивать, обрезать и переставлять их страницы с помощью интерактивного и интуитивно понятного графического интерфейса. Это фронтенд для pikepdf
audit_schedule :
editor :
keywords :
licence : GPL-3.0 license
homepage : https://github.com/pdfarranger/pdfarranger
package_uuid : 46c61248-0c46-4e16-bbf3-3a4f088a76f9
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 7802eb5c4d4f9c4020d385f9515c94abf62d738a70e82b738cf80eb6f85cf8e2
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-18T15:01:01.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 : ywDZjVi4WtLtyMj2ORoQJAOwqBZBKC3oqk8lCacOwNKq2kSbqBTz8/8jGw39G1fMGGNv4IZZ6ujIZ6nvYQkCmsvi3CAZQhsYo3bLo/IsKb4u/cxaFXdTBEUHYmu6BVAOr/pQkXVOxFyhO8E6uwYZB4RwvePM4iQBcBIsArfnlNYZCozuA66vlQLlAjNc/nM2ovTxWL1oqzT8IS6aQ2JK0J5/I6PIQh7awvLa5VCVk8fGTpqnDP2HFReBdYOntk5pPAB7RDRXjUFhUF2KXscGitf7L3rNdq/E8u/HbBIw45Hg4XUP/4V0GQunM+g/GzhszSSApuj7VafIJa0MfRepHw==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob('pdfarranger-*-windows-installer.msi')[0]
# Installing the software
# Uninstalling older version of the software that can remains
for to_uninstall in installed_softwares(name="PDF Arranger"):
if Version(to_uninstall["version"]) < Version(control.get_software_version()):
print(f"Removing: {to_uninstall['name']} ({to_uninstall['version']})")
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
properties = {"ALLUSERS" : 1}
install_msi_if_needed(bin_name,properties=properties)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "pdfarranger/pdfarranger"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith(".msi") :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl, filename, proxies=proxies)
# nettoyer les fichiers temporaires
for f in glob.glob("*.msi"):
if f != filename:
remove_file(f)
version =get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
aa8c7d2d275ade790f86370135847f5f7b5e423635f13e4dbd2222a374f7d4d0 : WAPT/control
7802eb5c4d4f9c4020d385f9515c94abf62d738a70e82b738cf80eb6f85cf8e2 : WAPT/icon.png
8623c01e9d8175906fb0a8db8ac873be85496dbf874acb4a678e380f5c5a0563 : luti.json
ae817d97290fd3400bd410b9f1b937343d077c3492a18c51c59c26202f081c5d : pdfarranger-1.12.1-windows-installer.msi
7c5b80ec9119686c3ccf8cab62d3dbf2ed090dbda3dc17c9bb04a5f0496b478a : setup.py
ec9515c147c47fff2b6554357d45e6caa7570312b1967b1a11e3b03bfb9fe0d4 : update_package.py