summaryrefslogtreecommitdiff
path: root/dev-embedded/ponyprog/ponyprog-3.1.3-r1.ebuild
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-05-28 20:35:18 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-05-28 23:08:05 +0200
commit1bae7c90ba217da90ec0421310bd71d7e09ee6fd (patch)
tree6f0523a0a1b2f5270fb6de296726105829cb1125 /dev-embedded/ponyprog/ponyprog-3.1.3-r1.ebuild
parent1187e5d2711b3d0797854b3ee90ed9135594372d (diff)
downloadgentoo-1bae7c90ba217da90ec0421310bd71d7e09ee6fd.tar.gz
gentoo-1bae7c90ba217da90ec0421310bd71d7e09ee6fd.tar.bz2
gentoo-1bae7c90ba217da90ec0421310bd71d7e09ee6fd.zip
dev-embedded/ponyprog: drop 3.1.3-r1
Closes: https://bugs.gentoo.org/948619 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-embedded/ponyprog/ponyprog-3.1.3-r1.ebuild')
-rw-r--r--dev-embedded/ponyprog/ponyprog-3.1.3-r1.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-embedded/ponyprog/ponyprog-3.1.3-r1.ebuild b/dev-embedded/ponyprog/ponyprog-3.1.3-r1.ebuild
deleted file mode 100644
index 0bb01589edd6..000000000000
--- a/dev-embedded/ponyprog/ponyprog-3.1.3-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic udev
-
-DESCRIPTION="EEPROM and microcontroller programmer/flasher"
-HOMEPAGE="https://github.com/lancos/ponyprog/"
-SRC_URI="https://github.com/lancos/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-DEPEND="
- <app-editors/qhexedit2-0.8.10
- dev-embedded/libftdi:1[cxx]
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtmultimedia:5
- dev-qt/qtprintsupport:5
- dev-qt/qtwidgets:5
- virtual/libusb:1
-"
-# blocker on libftdi-1.5-r2: see #775116
-RDEPEND="${DEPEND}
- !=dev-embedded/libftdi-1.5-r2
-"
-
-PATCHES=( "${FILESDIR}"/${P}-fix-build-system.patch )
-
-src_configure() {
- # -Werror=odr
- # https://bugs.gentoo.org/855272
- # https://github.com/lancos/ponyprog/issues/28
- filter-lto
-
- cmake_src_configure
-}
-
-pkg_postinst() {
- udev_reload
-
- elog "To use the COM port in user mode (not as root), you need to"
- elog "be in the 'uucp' group."
- elog
- elog "To use the LPT port in user mode (not as root) you need a kernel with"
- elog "ppdev, parport and parport_pc compiled in or as modules. You need the"
- elog "rights to write to /dev/parport? devices."
-}
-
-pkg_postrm() {
- udev_reload
-}