commit:     11f8d162c46490832e9eec125ec98279363a9ec6
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 19 20:25:09 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue May 20 19:12:21 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11f8d162

dev-cpp/pystring: drop 1.1.3-r1

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-cpp/pystring/Manifest                 |  1 -
 dev-cpp/pystring/files/cmake.patch        | 84 -------------------------------
 dev-cpp/pystring/pystring-1.1.3-r1.ebuild | 26 ----------
 3 files changed, 111 deletions(-)

diff --git a/dev-cpp/pystring/Manifest b/dev-cpp/pystring/Manifest
index b9b2b58cb8f5..f3fe371aabc1 100644
--- a/dev-cpp/pystring/Manifest
+++ b/dev-cpp/pystring/Manifest
@@ -1,2 +1 @@
-DIST pystring-1.1.3.tar.gz 18364 BLAKE2B 
caab1a3b1dc688ad6ecbb32e5e8139bb883a88b78ce8a021229924d57376e94b17d89277e2fccf4f7ec478c81ee9259c5e56848f4388c44b2eab9cfb841bcfb8
 SHA512 
a46bb2e96d6eb351a4a8097cde46ac2877d28e88f9e57e0ac36c42e8fc8543517c4be70306a01e2f88a891fc53c612494aeb37f47a200d94b8e1b050ed16eff6
 DIST pystring-1.1.4.tar.gz 19184 BLAKE2B 
299e6feb10e2f12fa1e92fd1a7309b482769b4d0edea65f5f4bac06c6ae318d3464cf8acc2d6a899c28eb9073a396402b6d28e0950b51ac7f214da1a0a7ca521
 SHA512 
9c0460fea67885492f9b0d29a9ba312d960fd5e43577cdcfd47faf04397ff4b7e456ed68f1948b923d2f63f9922d576b93e4ca1a27376bcb6d29c683828acb01

diff --git a/dev-cpp/pystring/files/cmake.patch 
b/dev-cpp/pystring/files/cmake.patch
deleted file mode 100644
index bd4e01e6658b..000000000000
--- a/dev-cpp/pystring/files/cmake.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 4f653fc35421129eae8a2c424901ca7170059370 Mon Sep 17 00:00:00 2001
-From: Harry Mallon <[email protected]>
-Date: Thu, 15 Apr 2021 15:50:22 +0100
-Subject: [PATCH] Add a CMake configuration
-
----
- CMakeLists.txt                | 56 +++++++++++++++++++++++++++++++++++
- cmake/pystringConfig.cmake.in |  4 +++
- 2 files changed, 60 insertions(+)
- create mode 100644 CMakeLists.txt
- create mode 100644 cmake/pystringConfig.cmake.in
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-new file mode 100644
-index 0000000..0081a83
---- /dev/null
-+++ b/CMakeLists.txt
-@@ -0,0 +1,56 @@
-+cmake_minimum_required(VERSION 3.2)
-+
-+option(BUILD_SHARED_LIBS "Create shared libraries if ON" OFF)
-+
-+project(pystring LANGUAGES CXX)
-+
-+# pystring library ======
-+
-+add_library(pystring
-+    pystring.cpp
-+    pystring.h
-+)
-+set_target_properties(pystring
-+    PROPERTIES
-+        PUBLIC_HEADER pystring.h
-+        SOVERSION 0.0)
-+
-+set(EXPORT_NAME "${PROJECT_NAME}Targets")
-+set(NAMESPACE "${PROJECT_NAME}::")
-+
-+# test ======
-+
-+include(CTest)
-+
-+if(BUILD_TESTING)
-+    add_executable(pystring_test
-+        test.cpp
-+        unittest.h
-+    )
-+
-+    target_link_libraries(pystring_test pystring)
-+
-+    add_test(NAME pystring_test COMMAND pystring_test)
-+endif()
-+
-+# install and cmake configs ======
-+
-+include(GNUInstallDirs)
-+install(TARGETS pystring
-+        EXPORT "${EXPORT_NAME}"
-+        LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
-+        ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
-+        INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
-+        PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/pystring)
-+
-+include(CMakePackageConfigHelpers)
-+configure_package_config_file(cmake/pystringConfig.cmake.in
-+    ${CMAKE_CURRENT_BINARY_DIR}/pystringConfig.cmake
-+    INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pystring)
-+
-+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/pystringConfig.cmake
-+    DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pystring)
-+
-+install(EXPORT "${EXPORT_NAME}"
-+        DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pystring
-+        NAMESPACE "${NAMESPACE}")
-diff --git a/cmake/pystringConfig.cmake.in b/cmake/pystringConfig.cmake.in
-new file mode 100644
-index 0000000..82e3995
---- /dev/null
-+++ b/cmake/pystringConfig.cmake.in
-@@ -0,0 +1,4 @@
-+@PACKAGE_INIT@
-+
-+include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]")
-+check_required_components("@PROJECT_NAME@")

diff --git a/dev-cpp/pystring/pystring-1.1.3-r1.ebuild 
b/dev-cpp/pystring/pystring-1.1.3-r1.ebuild
deleted file mode 100644
index ccc4e19d1a1d..000000000000
--- a/dev-cpp/pystring/pystring-1.1.3-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-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 ~arm ~arm64 ~ppc64 ~riscv x86"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-
-PATCHES=(
-       # Patch to convert the project into cmake. Taken from:
-       # https://github.com/imageworks/pystring/pull/29
-       "${FILESDIR}/cmake.patch"
-)

Reply via email to