From: "Petr Vaněk" <arkamar@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcmciautils/
Date: Thu, 31 Oct 2024 15:26:16 +0000 (UTC) [thread overview]
Message-ID: <1730388318.8bcf75fd31cecacf8171bc84c703234eeb21f529.arkamar@gentoo> (raw)
commit: 8bcf75fd31cecacf8171bc84c703234eeb21f529
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 31 15:12:27 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Thu Oct 31 15:25:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bcf75fd
sys-apps/pcmciautils: drop 018_p14
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
sys-apps/pcmciautils/Manifest | 1 -
sys-apps/pcmciautils/pcmciautils-018_p14.ebuild | 88 -------------------------
2 files changed, 89 deletions(-)
diff --git a/sys-apps/pcmciautils/Manifest b/sys-apps/pcmciautils/Manifest
index 500a901487bc..8702bb331e01 100644
--- a/sys-apps/pcmciautils/Manifest
+++ b/sys-apps/pcmciautils/Manifest
@@ -1,3 +1,2 @@
-DIST pcmciautils_018-14.debian.tar.xz 11516 BLAKE2B f023fce015a71a09b4b012c0d7396bc8eb426ccbd3c92e0ce7bd46c5f5d2510d0eae5a296300017e316fef1a6471d0040e8f84afc989d7f5fba734fdd5e11e1e SHA512 e5c98cbe54da296a8de05916f2e987f0dd5668e39a65f771e46aa5b1a04aa4821c3c5d0c94b0c9bede26df011f6a441be91f3c49105ceaca631daf013fbd6430
DIST pcmciautils_018-18.debian.tar.xz 12184 BLAKE2B 88d6d394dddd6973f9d18d1437a541851606a5f7ad5fe2cb1279cbe79bfb624e2d68829dc3733e13b90bc6d45e48ad29ea7b68ddde8f2d597196a2badd1c3d19 SHA512 2081bf550f16aa9e976ea4f8e88c7a3519dfe16935a0165563e070652791ef1ee89bf18e7bdf1fff64027cea2663e1c2531c1802149a47381f51a3764079e442
DIST pcmciautils_018.orig.tar.gz 48516 BLAKE2B 0b197cdd7d0940e5c0eee2da961f0f4dd972a3178ba5d07a6492185d0ab156cd61f5343c8f9d812cff402f04af76a15baa3db564d14317d3817e5325dd8811fb SHA512 f0af1fc6155686ae61c1c85a6451b032088a3880dfbc05c1d1ed33ca8e975745f9d4bedb0f3ee0a1252461aa008bed8014c73ff850cddd89d930524a6d68d47d
diff --git a/sys-apps/pcmciautils/pcmciautils-018_p14.ebuild b/sys-apps/pcmciautils/pcmciautils-018_p14.ebuild
deleted file mode 100644
index 63d3609bacad..000000000000
--- a/sys-apps/pcmciautils/pcmciautils-018_p14.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic linux-info toolchain-funcs udev
-
-DEB_REV=${PV#*_p}
-MY_PV=${PV%_p*}
-
-DESCRIPTION="PCMCIA userspace utilities for Linux"
-HOMEPAGE="https://packages.qa.debian.org/pcmciautils"
-SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV}.orig.tar.gz
- mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV}-${DEB_REV}.debian.tar.xz"
-S="${WORKDIR}"/${PN}-${MY_PV}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ppc ~riscv x86"
-IUSE="debug staticsocket"
-
-RDEPEND="sys-apps/kmod[tools]"
-DEPEND="${RDEPEND}
- app-alternatives/yacc
- app-alternatives/lex"
-
-PATCHES=(
- "${WORKDIR}"/debian/patches/no-modprobe-rules.patch
- "${WORKDIR}"/debian/patches/remove-libsysfs-dep.patch
- "${FILESDIR}"/${PN}-018_p8-flex-2.6.3-fix.patch
- "${FILESDIR}"/${PN}-018_p8-musl-unsigned-type.patch
- "${WORKDIR}"/debian/patches/parallel-build.patch
-)
-
-pkg_setup() {
- CONFIG_CHECK="~PCMCIA"
- linux-info_pkg_setup
-
- kernel_is lt 2 6 32 && ewarn "${P} requires at least kernel 2.6.32."
-}
-
-src_prepare() {
- default
-
- sed -i \
- -e '/CFLAGS/s:-fomit-frame-pointer::' \
- -e '/dir/s:sbin:bin:g' \
- Makefile || die
-}
-
-src_configure() {
- use debug && append-cppflags -DDEBUG
-
- mypcmciaopts=(
- STARTUP=$(usex staticsocket false true)
- exec_prefix=/usr
- UDEV=true
- DEBUG=false
- STATIC=false
- V=true
- udevdir="$(get_udevdir)"
- CC="$(tc-getCC)"
- HOSTCC="$(tc-getBUILD_CC)"
- LD="$(tc-getCC)"
- AR="$(tc-getAR)"
- STRIP=true
- RANLIB="$(tc-getRANLIB)"
- OPTIMIZATION="${CFLAGS} ${CPPFLAGS}"
- )
-}
-
-src_compile() {
- emake "${mypcmciaopts[@]}"
-}
-
-src_install() {
- emake "${mypcmciaopts[@]}" DESTDIR="${D}" install
-
- dodoc doc/*.txt
-}
-
-pkg_postinst() {
- udev_reload
-}
-
-pkg_postrm() {
- udev_reload
-}
next reply other threads:[~2024-10-31 15:26 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-31 15:26 Petr Vaněk [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-05 18:50 [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcmciautils/ James Le Cuirot
2024-10-25 5:46 Arthur Zamarin
2024-10-24 14:42 Sam James
2024-10-24 14:42 Sam James
2024-10-24 14:07 Arthur Zamarin
2024-09-22 17:22 Arthur Zamarin
2024-09-18 6:40 Petr Vaněk
2024-09-18 6:40 Petr Vaněk
2023-10-09 18:57 Sam James
2023-10-09 4:36 Sam James
2023-08-14 16:34 Ben Kohler
2022-08-28 6:30 WANG Xuerui
2022-05-25 16:50 Jakov Smolić
2021-12-29 7:14 Sam James
2021-08-25 2:30 Sam James
2021-07-26 4:37 Sam James
2020-08-08 14:24 Mikle Kolyada
2020-08-08 12:18 Mikle Kolyada
2018-05-26 10:26 Mikle Kolyada
2018-05-26 10:26 Mikle Kolyada
2018-04-30 8:19 Mikle Kolyada
2018-04-11 20:43 Thomas Deutschmann
2018-03-31 23:41 Aaron Bauman
2017-09-23 6:46 Jeroen Roovers
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=1730388318.8bcf75fd31cecacf8171bc84c703234eeb21f529.arkamar@gentoo \
--to=arkamar@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