diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /x11-plugins/pidgin-gpg | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'x11-plugins/pidgin-gpg')
| -rw-r--r-- | x11-plugins/pidgin-gpg/Manifest | 1 | ||||
| -rw-r--r-- | x11-plugins/pidgin-gpg/files/pidgin-gpg-0.9.3_musl-support.patch | 32 | ||||
| -rw-r--r-- | x11-plugins/pidgin-gpg/metadata.xml | 13 | ||||
| -rw-r--r-- | x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3-r1.ebuild | 35 |
4 files changed, 0 insertions, 81 deletions
diff --git a/x11-plugins/pidgin-gpg/Manifest b/x11-plugins/pidgin-gpg/Manifest deleted file mode 100644 index df2f2ce9ad1b..000000000000 --- a/x11-plugins/pidgin-gpg/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pidgin-gpg-0.9.3.tar.gz 806492 BLAKE2B 67ca75307419fe25d6a7f90ce33f63e736eae59e0cab9fd2fafbf7f9ccd61569fb9906e755163400c462bcd63fa8e9b1e42deb98e459fb9e070d73de9cfb28ab SHA512 bff7ec08d7999d40b689aabc0b559b7eab1fae765b6ffc799e355601ac3a2bb05c3831c1e56e30b95f387c446f7d07d1576af7e7824094fca9ac6c6636d62f6c diff --git a/x11-plugins/pidgin-gpg/files/pidgin-gpg-0.9.3_musl-support.patch b/x11-plugins/pidgin-gpg/files/pidgin-gpg-0.9.3_musl-support.patch deleted file mode 100644 index 47de6808fd5c..000000000000 --- a/x11-plugins/pidgin-gpg/files/pidgin-gpg-0.9.3_musl-support.patch +++ /dev/null @@ -1,32 +0,0 @@ -From https://github.com/Draghtnod/Pidgin-GPG/pull/9 -From: "Azamat H. Hackimov" <azamat.hackimov@gmail.com> -Date: Sat, 17 Feb 2024 13:28:40 +0300 -Subject: [PATCH] Fix compilation on MUSL systems - -In MUSL encrypt() is part of unistd.h, which conflicts with internal -static function encrypt(). Renamed last one to fix that. - -See: https://bugs.gentoo.org/831185 ---- a/src/pidgin-gpg.c -+++ b/src/pidgin-gpg.c -@@ -604,7 +604,7 @@ static char* verify( const char* sig_str ) { - * encrypt a plain string with the key found with fingerprint fpr - * FREE MEMORY AFTER USAGE OF RETURN VALUE! - * ------------------ */ --static char* encrypt( gpgme_ctx_t* ctx, gpgme_key_t* key_arr, const char* plain_str, const char* fpr ) { -+static char* pidgin_gpg_encrypt( gpgme_ctx_t* ctx, gpgme_key_t* key_arr, const char* plain_str, const char* fpr ) { - if( ctx == NULL ) { - purple_debug_error( PLUGIN_ID, "encrypt: missing ctx\n" ); - return NULL; -@@ -1054,7 +1054,7 @@ void jabber_send_signal_cb( PurpleConnection* pc, xmlnode** packet, gpointer unu - g_free( bare_jid ); - - // encrypt message -- enc_str = encrypt( &item->ctx, item->key_arr, message, item->fpr ); -+ enc_str = pidgin_gpg_encrypt( &item->ctx, item->key_arr, message, item->fpr ); - g_free( message ); - if( enc_str != NULL ) { - // remove message from body --- -2.43.0 - diff --git a/x11-plugins/pidgin-gpg/metadata.xml b/x11-plugins/pidgin-gpg/metadata.xml deleted file mode 100644 index becda8e6473a..000000000000 --- a/x11-plugins/pidgin-gpg/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person" proxied="yes"> - <email>azamat.hackimov@gmail.com</email> - <name>Azamat H. Hackimov</name> - </maintainer> - <maintainer type="project" proxied="proxy"> - <email>proxy-maint@gentoo.org</email> - <name>Proxy Maintainers</name> - </maintainer> - <origin>baldeagleos-repo</origin> -</pkgmetadata> diff --git a/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3-r1.ebuild b/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3-r1.ebuild deleted file mode 100644 index 03ca90a1df37..000000000000 --- a/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Pidgin GPG/OpenPGP (XEP-0027) plugin" -HOMEPAGE="https://github.com/Draghtnod/Pidgin-GPG" -SRC_URI="https://github.com/Draghtnod/Pidgin-GPG/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" - -RDEPEND="app-crypt/gpgme:= - net-im/pidgin" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/Pidgin-GPG-${PV}" - -PATCHES=( - "${FILESDIR}/pidgin-gpg-0.9.3_musl-support.patch" -) - -src_prepare() { - default - eautoreconf -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -} |
