summaryrefslogtreecommitdiff
path: root/dev-python/pystring
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-02-14 01:39:29 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-02-14 01:39:29 +0000
commitbcb4e496e52fa74a22eacd2b68fe36c8863029c3 (patch)
treed87564045f9bbbeab835bd325d938d2d1c9e6862 /dev-python/pystring
parentc6ef284515a5b1669dfc86302f8179bc48af55ae (diff)
downloadbaldeagleos-repo-bcb4e496e52fa74a22eacd2b68fe36c8863029c3.tar.gz
baldeagleos-repo-bcb4e496e52fa74a22eacd2b68fe36c8863029c3.tar.xz
baldeagleos-repo-bcb4e496e52fa74a22eacd2b68fe36c8863029c3.zip
Adding metadata
Diffstat (limited to 'dev-python/pystring')
-rw-r--r--dev-python/pystring/Manifest1
-rw-r--r--dev-python/pystring/metadata.xml14
-rw-r--r--dev-python/pystring/pystring-1.1.3.ebuild28
3 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/pystring/Manifest b/dev-python/pystring/Manifest
deleted file mode 100644
index eb3773a17b36..000000000000
--- a/dev-python/pystring/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pystring-1.1.3.tar.gz 18364 BLAKE2B caab1a3b1dc688ad6ecbb32e5e8139bb883a88b78ce8a021229924d57376e94b17d89277e2fccf4f7ec478c81ee9259c5e56848f4388c44b2eab9cfb841bcfb8 SHA512 a46bb2e96d6eb351a4a8097cde46ac2877d28e88f9e57e0ac36c42e8fc8543517c4be70306a01e2f88a891fc53c612494aeb37f47a200d94b8e1b050ed16eff6
diff --git a/dev-python/pystring/metadata.xml b/dev-python/pystring/metadata.xml
deleted file mode 100644
index f5665a5be028..000000000000
--- a/dev-python/pystring/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>parona@protonmail.com</email>
- <name>Alfred Wingate</name>
- </maintainer>
- <maintainer type="project">
- <email>dev@liguros.net</email>
- <name>Development</name>
- </maintainer>
-
- <origin>ports</origin>
-</pkgmetadata> \ No newline at end of file
diff --git a/dev-python/pystring/pystring-1.1.3.ebuild b/dev-python/pystring/pystring-1.1.3.ebuild
deleted file mode 100644
index d7d9e531ac6f..000000000000
--- a/dev-python/pystring/pystring-1.1.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2021 Liguros Authors
-# Distributed under the terms of the GNU General Public License v2
-EAPI=7
-
-DESCRIPTION="C++ functions matching the interface and behavior of python string methods"
-HOMEPAGE="https://github.com/imageworks/pystring"
-
-if [[ "${PV}" == "9999" ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/imageworks/pystring.git"
-else
- SRC_URI="https://github.com/imageworks/pystring/archive/v"${PV}".tar.gz -> "${P}".tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-
-src_compile() {
- emake LIBDIR="${S}" install
- mkdir pystring || die
- mv pystring.h pystring || die
-}
-
-src_install() {
- dolib.so libpystring.so{,.0{,.0.0}}
- doheader -r pystring
-}