From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 811CF158094 for ; Tue, 2 Aug 2022 04:44:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2F2AE0F9A; Tue, 2 Aug 2022 04:44:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9CF62E0F9A for ; Tue, 2 Aug 2022 04:44:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8BCC6340FE4 for ; Tue, 2 Aug 2022 04:44:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0670500 for ; Tue, 2 Aug 2022 04:44:22 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1659415456.f0cfc3dffae8c995c38f6f2f7e915cb8b714b178.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmtp/libmtp-1.1.19.ebuild X-VCS-Directories: media-libs/libmtp/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: f0cfc3dffae8c995c38f6f2f7e915cb8b714b178 X-VCS-Branch: master Date: Tue, 2 Aug 2022 04:44:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fef751eb-7776-463a-80e6-cda19c1c0e7b X-Archives-Hash: 179f621f2f5cd10f76840ca5d9920939 commit: f0cfc3dffae8c995c38f6f2f7e915cb8b714b178 Author: Miroslav Šulc gentoo org> AuthorDate: Tue Aug 2 04:44:16 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Tue Aug 2 04:44:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0cfc3df media-libs/libmtp: dropped obsolete 1.1.19 Bug: https://bugs.gentoo.org/862624 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/libmtp/libmtp-1.1.19.ebuild | 80 ---------------------------------- 1 file changed, 80 deletions(-) diff --git a/media-libs/libmtp/libmtp-1.1.19.ebuild b/media-libs/libmtp/libmtp-1.1.19.ebuild deleted file mode 100644 index cb54789a908f..000000000000 --- a/media-libs/libmtp/libmtp-1.1.19.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit udev - -if [[ ${PV} == 9999* ]]; then - EGIT_REPO_URI="https://git.code.sf.net/p/${PN}/code" - inherit autotools git-r3 -else - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv x86" -fi - -DESCRIPTION="Implementation of Microsoft's Media Transfer Protocol (MTP)" -HOMEPAGE="http://libmtp.sourceforge.net/" - -LICENSE="LGPL-2.1" # LGPL-2+ and LGPL-2.1+ ? -SLOT="0/9" # Based on SONAME of libmtp shared library -IUSE="+crypt doc examples static-libs" - -RDEPEND=" - acct-group/plugdev - virtual/libiconv - virtual/libusb:1 - crypt? ( >=dev-libs/libgcrypt-1.5.4:0= )" -DEPEND="${RDEPEND}" -BDEPEND=" - >sys-devel/gettext-0.18.3 - virtual/pkgconfig - doc? ( app-doc/doxygen )" - -DOCS=( AUTHORS README TODO ) - -src_prepare() { - default - - # ChangeLog says "RETIRING THIS FILE ..pause.. GIT" (Last entry from start of 2011) - rm ChangeLog || die - - if [[ ${PV} == 9999* ]]; then - if [[ -e /usr/share/gettext/config.rpath ]]; then - cp /usr/share/gettext/config.rpath . || die - else - touch config.rpath || die # This is from upstream autogen.sh - fi - eautoreconf - fi -} - -src_configure() { - local myeconfargs=( - $(use_enable crypt mtpz) - $(use_enable doc doxygen) - $(use_enable static-libs static) - --with-udev="$(get_udevdir)" - --with-udev-group=plugdev - --with-udev-mode=0660 - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - find "${ED}" -name "*.la" -delete || die - - if use examples; then - docinto examples - dodoc examples/*.{c,h,sh} - fi -} - -pkg_postinst() { - udev_reload -} - -pkg_postrm() { - udev_reload -}