summaryrefslogtreecommitdiff
path: root/sci-libs/oc
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 /sci-libs/oc
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'sci-libs/oc')
-rw-r--r--sci-libs/oc/Manifest1
-rw-r--r--sci-libs/oc/metadata.xml14
-rw-r--r--sci-libs/oc/oc-2.0-r1.ebuild44
3 files changed, 0 insertions, 59 deletions
diff --git a/sci-libs/oc/Manifest b/sci-libs/oc/Manifest
deleted file mode 100644
index 1d99073dbc62..000000000000
--- a/sci-libs/oc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST oc-2.0.tar.gz 1104073 BLAKE2B a93fdf15fe085345dc547da51e5f99b4db18baab6126be73aa240e8c5092be0501abc606f556879c09bd41fe1ea4cb78df3c84472e2de3342853d67848b6aeb3 SHA512 e583fbacc8929ef5b2ae0d0f675816b8f46056b11987f8285688a7321d3dfd244a748be00f009f1b2c2b7f95e5a6ecc8eb8e907f81415e849f10a5ff138e82a4
diff --git a/sci-libs/oc/metadata.xml b/sci-libs/oc/metadata.xml
deleted file mode 100644
index 111a04eeb398..000000000000
--- a/sci-libs/oc/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
- The New OPeNDAP C API (oc) is an OPeNDAP DAP 2.0 client implementation
- written in generic C. This new API allows for more funcionality and
- less complexity than the original C API.
- </longdescription>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/sci-libs/oc/oc-2.0-r1.ebuild b/sci-libs/oc/oc-2.0-r1.ebuild
deleted file mode 100644
index 2a8d3fa2adb2..000000000000
--- a/sci-libs/oc/oc-2.0-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic
-
-DESCRIPTION="Network Data Access Protocol client C library"
-HOMEPAGE="https://opendap.org/"
-SRC_URI="https://opendap.org/pub/OC/source/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-# tests need network
-RESTRICT="test"
-
-RDEPEND="net-misc/curl"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- # -Werror=strict-aliasing
- # https://bugs.gentoo.org/862906
- #
- # Upstream exists, they just don't seem to mention oc anymore, *anywhere*.
- #
- # Do not trust with LTO either.
- append-flags -fno-strict-aliasing
- filter-lto
-
- econf --disable-static
-}
-
-src_install() {
- if use doc; then
- dodoc docs/oc*html
- HTML_DOCS=( docs/html/. )
- fi
- default
-
- # no static archives
- find "${D}" -name '*.la' -delete || die
-}