gpgmepp new package
This commit is contained in:
+2678
-1559
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
861a6b159e9f82c247598908227a9dcb226d614c
|
||||
7a43bc258867f1882ee7389ebd5e366eb4c64559
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
3e4c89b05b7815b70c941cacb83cc8f60f2106a8
|
||||
3eefbda642305b5b3800cf7670e5986f0b4d99a2
|
||||
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("cmake -B build \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
#def check():
|
||||
#autotools.make("check")
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Herhangi bir hata oluştuğunda betiği durdur
|
||||
set -e
|
||||
|
||||
# Proje adı
|
||||
PROJECT_NAME="gpgmepp"
|
||||
# Arşivin adı (en güncel sürüm olduğu için "latest" kullandık)
|
||||
ARCHIVE_NAME="${PROJECT_NAME}-latest"
|
||||
# Kullanıcının belirttiği Git deposu URL'si
|
||||
GIT_REPO_URL="https://dev.gnupg.org/source/${PROJECT_NAME}.git"
|
||||
# Arşivlenecek branch/tag (varsayılan olarak HEAD, yani en son commit)
|
||||
# Eğer belirli bir versiyonu (örn: gpgmepp-2.0.0) indirmek isterseniz,
|
||||
# bu satırı "gpgmepp-2.0.0" gibi bir etiketle değiştirebilirsiniz.
|
||||
# Şu anki haliyle depodaki en son halini indirecektir.
|
||||
REFERENCE="cd13d4b00cd19d723574acf843abee95111070fb"
|
||||
|
||||
echo "${PROJECT_NAME} projesinin '${REFERENCE}' referansına ait arşiv oluşturuluyor..."
|
||||
|
||||
# Git deposundan belirtilen referansın (HEAD) anlık görüntüsünü alarak doğrudan tar.xz arşivi oluştur
|
||||
# --prefix sayesinde arşivin içindeki kök klasör adı 'gpgmepp-latest/' olacak
|
||||
echo "Git deposundan '${REFERENCE}' referansının arşivlenmesi başlatılıyor..."
|
||||
git archive --format=tar --prefix="${ARCHIVE_NAME}/" "${REFERENCE}" -o "${ARCHIVE_NAME}.tar" --remote="${GIT_REPO_URL}"
|
||||
|
||||
# Oluşturulan tar dosyasını xz ile sıkıştır
|
||||
echo "${ARCHIVE_NAME}.tar dosyası .xz formatına sıkıştırılıyor..."
|
||||
xz -k "${ARCHIVE_NAME}.tar"
|
||||
|
||||
echo "Arşiv başarıyla oluşturuldu: ${ARCHIVE_NAME}.tar.xz"
|
||||
echo "Dosya mevcut konumunuzda (${PWD}) bulunmaktadır."
|
||||
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gpgmepp</Name>
|
||||
<Homepage>http://www.gnupg.org/gpgme.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>GnuPG Made Easy is a library for making GnuPG easier to use</Summary>
|
||||
<Description>GPGME is a library designed to make access to GnuPG easier for applications. It provides a high-Level Crypto application programming interface (API) for encryption, decryption, signing, signature verification and key management.</Description>
|
||||
<Archive sha1sum="0eeb0fe7fcda6145f39924837c83062b7750b2e8" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/gpgmepp-2.0.0.tar.xz/download</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gpgme-devel</Dependency>
|
||||
<Dependency>libassuan-devel</Dependency>
|
||||
<Dependency>libgpg-error-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">0001-qt-tests-Fix-build-in-source-directory.patch</Patch> -->
|
||||
<!-- <Patch level="1">0002-qt-tests-Fix-build-in-source-directory-part-2.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gpgmepp</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>gpgme</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/common-lisp</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>gpgmepp-devel</Name>
|
||||
<Summary>Development files for gpgmepp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">gpgmepp</Dependency>
|
||||
<Dependency>libgpg-error-devel</Dependency>
|
||||
<Dependency>gpgme-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include/qgpgme/*</Path>
|
||||
<Path fileType="header">/usr/include/QGpgME/*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2025-06-16</Date>
|
||||
<Version>2.0.0</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gpgmepp</Name>
|
||||
<Summary xml:lang="tr">GnuPG Made Easy, GnuPG kullanmayı kolaylaştıran bir kütüphanedir</Summary>
|
||||
<Description xml:lang="tr">GPGME daha kolay uygulanması amacıyla GnuPG ye erişimi sağlamak için tasarlanmış bir kütüphanedir. Şifreleme, şifre çözme, imzalama, imza kontrolü ve anahtar yönetimi için yüksek düzeyde gizli uygulama programlama arayüzü sağlar.</Description>
|
||||
<Description xml:lang="fr">GPGME est une librairie conçue pour donner aux applications un accès plus facile à GnuPG. Elle fournit une interface de programmation d'application (API) de haut niveau pour la cryptographie permettant de crypter, décrypter, signer, vérifier les signatures et la gestion de clefs.</Description>
|
||||
<Description xml:lang="es">GPGME es una librería diseñada para simplificar el acceso a GnuPG para aplicaciones. Facilita una interfaz de programación de aplicación (API) de alto nivel para encriptación, decriptación, firmas, verificación de firmas y administración de llaves.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gpgmepp-devel</Name>
|
||||
<Summary xml:lang="tr">gpgmepp için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user