public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/poco/
Date: Thu, 13 Feb 2025 13:48:22 +0000 (UTC)	[thread overview]
Message-ID: <1739454475.f82b04ca44dcbbca8a7afa3134fa18c48b2ba334.sam@gentoo> (raw)

commit:     f82b04ca44dcbbca8a7afa3134fa18c48b2ba334
Author:     David Roman <droman <AT> ifae <DOT> es>
AuthorDate: Thu Feb 13 13:39:24 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 13 13:47:55 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82b04ca

dev-libs/poco: drop 1.12.4

Signed-off-by: David Roman <droman <AT> ifae.es>
Closes: https://github.com/gentoo/gentoo/pull/40556
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/poco/Manifest           |   1 -
 dev-libs/poco/poco-1.12.4.ebuild | 146 ---------------------------------------
 2 files changed, 147 deletions(-)

diff --git a/dev-libs/poco/Manifest b/dev-libs/poco/Manifest
index fa4b6dc91ec3..60580a5dff97 100644
--- a/dev-libs/poco/Manifest
+++ b/dev-libs/poco/Manifest
@@ -1,4 +1,3 @@
-DIST poco-1.12.4.tar.gz 11296139 BLAKE2B 45e1214616e78041d5ca512cee46621c006fe21f51231f3261dc40ca4941eb3cd4e52db493aa826779784f9d3f35cfd08e3e9d08fb35ebec2d610fb6528c635a SHA512 730700a24b5a00d44aa85914e7d3c9eff76969a123a67315ba5e9b2d18c0ace70d2664d8a611496851f497aa4985d36685a67813a95e814461ae0fffdb460d91
 DIST poco-1.13.3.tar.gz 11332562 BLAKE2B 04380cae92bbd2427873f0ea1a3fcade244ee5168390e26081983ded9faaf22e456bdd4ae87f9c77bafc92155f860ea9f56678ec2204bcd7c51a871e7f00d759 SHA512 084064fb462c9e7993d069ebdf395802af900ed92c5b294465a2c246162bb86caa3505985de329e8110d3e9fb3bc39ae9536d523843729d4ed5ce00c35289d92
 DIST poco-1.14.0.tar.gz 12158142 BLAKE2B 3ae9a520941634ac9aa72d323541d6433ac2e73d4d19e0654f932ea031d17870ca4ad764a8e3c5e68d69c5dc9750d779102d80d6d810598db275f269928ae8ea SHA512 4475a0ede5d06e4ce9537295fec92fa39b8fd5635d1cfb38498be4f707bc62b4a8b57672d2a15b557114e4115cc45480d27d0c856b7bd982eeec7adad9ff2582
 DIST poco-1.14.1.tar.gz 12160003 BLAKE2B 8fe985b8b3c4ab93df57fc63dbea97612c7f748ca0319b5ffea931bdd438f0d563d17e47da259cc9de30311ec5c9622c9420c64058d4c6075bff1a70a819dca9 SHA512 e192818a5f731ec6f6bddf062573d7bedfd15754157f145882c2c9d9bce497b92cf23f639f989d9e5605cb83029c4f303752cab655b525b5a5b5e5b704714725

diff --git a/dev-libs/poco/poco-1.12.4.ebuild b/dev-libs/poco/poco-1.12.4.ebuild
deleted file mode 100644
index 53b41bdf2c35..000000000000
--- a/dev-libs/poco/poco-1.12.4.ebuild
+++ /dev/null
@@ -1,146 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++ libraries for building network-based applications"
-HOMEPAGE="https://pocoproject.org/"
-SRC_URI="https://github.com/pocoproject/${PN}/archive/${P}-release.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${P}-release"
-
-LICENSE="Boost-1.0"
-# SHARED_LIBRARY_VERSION -> "${S}"/libversion
-SLOT="0/94"
-KEYWORDS="amd64 arm arm64 ppc64 x86"
-IUSE="7z activerecord cppparser +data examples +file2pagecompiler iodbc +json jwt mariadb +mongodb mysql +net odbc +pagecompiler pdf pocodoc postgres prometheus sqlite +ssl test +util +xml +zip"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="
-	activerecord? ( util xml )
-	7z? ( xml )
-	file2pagecompiler? ( pagecompiler )
-	iodbc? ( odbc )
-	jwt? ( json ssl )
-	mongodb? ( data )
-	mysql? ( data )
-	odbc? ( data )
-	postgres? ( data )
-	pagecompiler? ( json net util xml )
-	pocodoc? ( cppparser util xml )
-	sqlite? ( data )
-	ssl? ( util )
-	test? ( data? ( sqlite ) json util xml )
-"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="
-	>=dev-libs/libpcre2-10.40
-	activerecord? ( !app-arch/arc )
-	mysql? ( dev-db/mysql-connector-c:= )
-	mariadb? ( dev-db/mariadb-connector-c:= )
-	postgres? ( dev-db/postgresql:= )
-	odbc? (
-		iodbc? ( dev-db/libiodbc )
-		!iodbc? ( dev-db/unixODBC )
-	)
-	sqlite? ( dev-db/sqlite:3 )
-	ssl? (
-		dev-libs/openssl:=
-	)
-	xml? ( dev-libs/expat )
-	zip? ( sys-libs/zlib:= )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-1.10.1-iodbc-incdir.patch" )
-
-src_prepare() {
-	cmake_src_prepare
-
-	if [[ ${SLOT} != 0/$(< "${S}"/libversion) ]] ; then
-		die "Please update subslot in ebuild to the version in ${S}/libversion!"
-	fi
-
-	if use test ; then
-		# ignore missing tests on experimental library
-		# and tests requiring running DB-servers, internet connections, etc.
-		sed -i -e '/testsuite/d' \
-			{Data/{MySQL,ODBC},MongoDB,Net,NetSSL_OpenSSL,PDF,Redis}/CMakeLists.txt || die
-		# Poco expands ~ using passwd, which does not match $HOME in the build environment
-		sed -i -e '/CppUnit_addTest.*testExpand/d' \
-			Foundation/testsuite/src/PathTest.cpp || die
-		# ignore failing Crypto test since upstream does not seem to care,
-		# see https://github.com/pocoproject/poco/issues/1209
-		sed -i -e '/RSATest, testRSACipherLarge/d' \
-			Crypto/testsuite/src/RSATest.cpp || die
-	fi
-
-	# Fix MariaDB and MySQL detection
-	sed -i -e 's~/usr/include/mysql~~' \
-		-e 's/mysqlclient_r/mysqlclient/' \
-		-e 's/STATUS "Couldn/FATAL_ERROR "Couldn/' \
-		cmake/FindMySQL.cmake || die
-
-	# Add missing directory that breaks the build
-	mkdir -p Encodings/testsuite/data || die
-
-	if ! use iodbc ; then
-		sed -i -e 's|iodbc||' cmake/FindODBC.cmake || die
-	fi
-}
-
-src_configure() {
-	# apache support is dead and buggy, https://github.com/pocoproject/poco/issues/1764
-	local mycmakeargs=(
-		-DPOCO_UNBUNDLED=ON
-		-DENABLE_APACHECONNECTOR=OFF
-		-DENABLE_ACTIVERECORD="$(usex activerecord)"
-		-DENABLE_ACTIVERECORD_COMPILER="$(usex activerecord)"
-		-DENABLE_CPPPARSER="$(usex cppparser)"
-		-DENABLE_CRYPTO="$(usex ssl)"
-		-DENABLE_DATA="$(usex data)"
-		-DENABLE_DATA_MYSQL="$(usex mysql)"
-		-DENABLE_DATA_ODBC="$(usex odbc)"
-		-DENABLE_DATA_POSTGRESQL="$(usex postgres)"
-		-DENABLE_DATA_SQLITE="$(usex sqlite)"
-		-DENABLE_JSON="$(usex util)"
-		-DENABLE_JWT="$(usex jwt)"
-		-DENABLE_MONGODB="$(usex mongodb)"
-		-DENABLE_NET="$(usex net)"
-		-DENABLE_NETSSL="$(usex ssl)"
-		-DENABLE_NETSSL_WIN=OFF
-		-DENABLE_PAGECOMPILER="$(usex pagecompiler)"
-		-DENABLE_PAGECOMPILER_FILE2PAGE="$(usex file2pagecompiler)"
-		-DENABLE_PDF="$(usex pdf)"
-		-DENABLE_POCODOC="$(usex pocodoc)"
-		-DENABLE_PROMETHEUS="$(usex prometheus)"
-		-DENABLE_SEVENZIP="$(usex 7z)"
-		-DENABLE_TESTS="$(usex test)"
-		-DENABLE_UTIL="$(usex util)"
-		-DENABLE_XML="$(usex xml)"
-		-DENABLE_ZIP="$(usex zip)"
-	)
-
-	cmake_src_configure
-}
-
-src_test() {
-	POCO_BASE="${S}" cmake_src_test -E DataPostgreSQL
-}
-
-src_install() {
-	cmake_src_install
-
-	if use examples ; then
-		for sd in */samples ; do
-			docinto examples/${sd%/samples}
-			dodoc -r ${sd}
-		done
-
-		find "${D}/usr/share/doc/${PF}/examples" \
-			-iname "*.sln" -or -iname "*.vcproj" -or \
-			-iname "*.vmsbuild" -or -iname "*.properties" \
-			| xargs rm -v || die
-	fi
-}


             reply	other threads:[~2025-02-13 13:48 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-13 13:48 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-15 19:39 [gentoo-commits] repo/gentoo:master commit in: dev-libs/poco/ Jakov Smolić
2025-02-13 17:51 Sam James
2025-02-13 17:51 Sam James
2025-02-13 17:51 Sam James
2025-02-13 17:51 Sam James
2025-02-13 13:48 Sam James
2025-01-03 16:41 Joonas Niilola
2025-01-03 16:41 Joonas Niilola
2024-06-11 17:58 Sam James
2024-06-11 17:58 Sam James
2024-06-11 17:18 Sam James
2024-06-11 17:18 Sam James
2024-06-11 16:54 Sam James
2024-05-10  6:20 Arthur Zamarin
2024-05-10  6:20 Arthur Zamarin
2024-05-10  6:20 Arthur Zamarin
2024-01-15  3:32 Ionen Wolkens
2023-12-14  4:15 Sam James
2023-10-05 14:33 Joonas Niilola
2023-08-15 12:17 Joonas Niilola
2023-07-26  5:16 Joonas Niilola
2023-07-26  5:16 Joonas Niilola
2023-07-25 18:14 Arthur Zamarin
2022-12-24  8:59 Andreas Sturmlechner
2022-12-18  4:20 Sam James
2022-12-18  4:20 Sam James
2022-11-15  8:46 Sam James
2022-11-15  8:46 Sam James
2022-11-15  8:46 Sam James
2022-10-25 18:48 Arthur Zamarin
2022-10-25 18:48 Arthur Zamarin
2022-10-24  7:12 Joonas Niilola
2022-10-12 19:22 Sam James
2022-10-10 13:18 Joonas Niilola
2022-10-10 13:18 Joonas Niilola
2022-09-05 14:36 Jakov Smolić
2022-06-23  9:23 Joonas Niilola
2022-06-23  9:23 Joonas Niilola
2022-05-10 19:53 Florian Schmaus
2022-05-06  7:47 Sam James
2022-02-14 20:45 Sam James
2022-02-14  0:55 Sam James
2021-10-10 23:17 Sam James
2021-06-03 22:52 Sam James
2021-06-02 19:01 Sam James
2021-05-02 15:38 Mikle Kolyada
2020-11-24  3:47 Sam James
2019-10-11 18:28 Andreas Sturmlechner
2019-10-10 18:57 Andreas Sturmlechner
2019-07-17 13:59 Agostino Sarubbo
2019-07-16 10:21 Hans de Graaff
2019-07-16 10:21 Hans de Graaff
2019-04-07 21:45 Mikle Kolyada
2019-03-24 10:01 Agostino Sarubbo
2019-03-23 12:25 Pacho Ramos
2019-03-23 12:25 Pacho Ramos
2019-02-10  3:00 Brian Evans
2019-01-07 19:15 Lars Wendler
2018-11-22 23:16 Michał Górny
2018-06-23 21:55 Aaron Bauman
2018-06-15 20:01 Vladimir Smirnov
2018-04-13 23:22 Aaron Bauman
2015-10-05  8:45 Julian Ospald

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1739454475.f82b04ca44dcbbca8a7afa3134fa18c48b2ba334.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox