summaryrefslogtreecommitdiff
path: root/dev-libs/libstrophe
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-libs/libstrophe
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-libs/libstrophe')
-rw-r--r--dev-libs/libstrophe/Manifest2
-rw-r--r--dev-libs/libstrophe/libstrophe-0.13.1-r1.ebuild56
-rw-r--r--dev-libs/libstrophe/libstrophe-0.14.0.ebuild56
-rw-r--r--dev-libs/libstrophe/metadata.xml21
4 files changed, 0 insertions, 135 deletions
diff --git a/dev-libs/libstrophe/Manifest b/dev-libs/libstrophe/Manifest
deleted file mode 100644
index 877e667210bc..000000000000
--- a/dev-libs/libstrophe/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST libstrophe-0.13.1.tar.xz 405676 BLAKE2B b5ee084899c01d600c23e8d54e600bf72c2a92147e739d3b286c034ea3badf5e924b11a08c8c84f1453e88df40d494549286897ac3e90fb9af18b29da9754e07 SHA512 e150567db75ce615d7946471d15f968f8825ae75aa349a3c3be4e960eaea0b4960ac4c2da9aec40e984678361d89db3055062aa523ef485e9ea58a761bbcceed
-DIST libstrophe-0.14.0.tar.xz 415048 BLAKE2B d2b941aafaf1af9e199e67935376408a19872cd430095ff04f4af9e351c95b2ed04c1a91bbed6b3bcd5f8bfac62c4e704d602d42d4f61df468635e23787dbc7b SHA512 435d6f8085bd04286ac0e0e2ea729b9df2947e3dd22be57628c66ca2e6ff92a40e3a93750d95bea64daab1c1109f3f55e8480348054e9c5cb267655c60078e23
diff --git a/dev-libs/libstrophe/libstrophe-0.13.1-r1.ebuild b/dev-libs/libstrophe/libstrophe-0.13.1-r1.ebuild
deleted file mode 100644
index 5a7e6d9e55ff..000000000000
--- a/dev-libs/libstrophe/libstrophe-0.13.1-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic
-
-DESCRIPTION="A simple, lightweight C library for writing XMPP clients"
-HOMEPAGE="https://strophe.im/libstrophe/"
-SRC_URI="
- https://github.com/strophe/${PN}/releases/download/${PV}/${P}.tar.xz
-"
-LICENSE="|| ( MIT GPL-3 )"
-# Subslot: ${SONAME}.1 to differentiate from previous versions without SONAME
-SLOT="0/0.1"
-KEYWORDS="amd64 ~arm64"
-IUSE="doc expat gnutls"
-
-RDEPEND="
- expat? ( dev-libs/expat )
- !expat? ( dev-libs/libxml2:2= )
- gnutls? ( net-libs/gnutls:0= )
- !gnutls? ( dev-libs/openssl:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-text/doxygen )
-"
-
-DOCS=( ChangeLog )
-
-src_configure() {
- # bug #944913
- append-cflags -std=gnu17
- local myeconf=(
- --enable-tls
- $(use_with !expat libxml2)
- $(use_with gnutls)
- )
- econf "${myeconf[@]}"
-}
-
-src_compile() {
- default
- if use doc; then
- doxygen || die
- HTML_DOCS=( docs/html/* )
- fi
-}
-
-src_install() {
- default
- use doc && dodoc -r examples
- find "${D}" -type f \( -name '*.la' -o -name '*.a' \) -delete || die
-}
diff --git a/dev-libs/libstrophe/libstrophe-0.14.0.ebuild b/dev-libs/libstrophe/libstrophe-0.14.0.ebuild
deleted file mode 100644
index 5a7e6d9e55ff..000000000000
--- a/dev-libs/libstrophe/libstrophe-0.14.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic
-
-DESCRIPTION="A simple, lightweight C library for writing XMPP clients"
-HOMEPAGE="https://strophe.im/libstrophe/"
-SRC_URI="
- https://github.com/strophe/${PN}/releases/download/${PV}/${P}.tar.xz
-"
-LICENSE="|| ( MIT GPL-3 )"
-# Subslot: ${SONAME}.1 to differentiate from previous versions without SONAME
-SLOT="0/0.1"
-KEYWORDS="amd64 ~arm64"
-IUSE="doc expat gnutls"
-
-RDEPEND="
- expat? ( dev-libs/expat )
- !expat? ( dev-libs/libxml2:2= )
- gnutls? ( net-libs/gnutls:0= )
- !gnutls? ( dev-libs/openssl:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-text/doxygen )
-"
-
-DOCS=( ChangeLog )
-
-src_configure() {
- # bug #944913
- append-cflags -std=gnu17
- local myeconf=(
- --enable-tls
- $(use_with !expat libxml2)
- $(use_with gnutls)
- )
- econf "${myeconf[@]}"
-}
-
-src_compile() {
- default
- if use doc; then
- doxygen || die
- HTML_DOCS=( docs/html/* )
- fi
-}
-
-src_install() {
- default
- use doc && dodoc -r examples
- find "${D}" -type f \( -name '*.la' -o -name '*.a' \) -delete || die
-}
diff --git a/dev-libs/libstrophe/metadata.xml b/dev-libs/libstrophe/metadata.xml
deleted file mode 100644
index 579c2f2fe84d..000000000000
--- a/dev-libs/libstrophe/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>nex+b-g-o@nexadn.de</email>
- <name>Adrian Schollmeyer</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/strophe/libstrophe/issues</bugs-to>
- </upstream>
- <longdescription lang="en">
- libstrophe is a lightweight XMPP client library written
- in C. It has minimal dependencies and is configurable
- for various environments.
- </longdescription>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>