summaryrefslogtreecommitdiff
path: root/dev-util/editorconfig-geany
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-03-01 06:55:09 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-03-01 06:55:09 +0000
commit5c6d2a67dcce418bf8026c8e9dc77c5e619e415f (patch)
tree15e3e82c4e4f8ff6a9ec920c4b0b158f83d923bb /dev-util/editorconfig-geany
parent0dd66c88e9628297099dfd4447e8975cb6ed0c16 (diff)
downloadbaldeagleos-repo-5c6d2a67dcce418bf8026c8e9dc77c5e619e415f.tar.gz
baldeagleos-repo-5c6d2a67dcce418bf8026c8e9dc77c5e619e415f.tar.xz
baldeagleos-repo-5c6d2a67dcce418bf8026c8e9dc77c5e619e415f.zip
Adding metadata
Diffstat (limited to 'dev-util/editorconfig-geany')
-rw-r--r--dev-util/editorconfig-geany/Manifest1
-rw-r--r--dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild47
2 files changed, 0 insertions, 48 deletions
diff --git a/dev-util/editorconfig-geany/Manifest b/dev-util/editorconfig-geany/Manifest
index 29dd47696746..fd32f7015eb8 100644
--- a/dev-util/editorconfig-geany/Manifest
+++ b/dev-util/editorconfig-geany/Manifest
@@ -1,2 +1 @@
DIST editorconfig-geany-0.2.1.tar.gz 12406 BLAKE2B 22be66b409477b2e4936d27c5112db7e145346e084aebb88f8aec86cffb876a4f425d9eda8c9c18256cf51780e55dd3a44d18a4e2a3d89e368c6e49b350c6ac0 SHA512 7df0cadb6a8a434d2d8ed3b90cde264c24b5a3de2b7d4a15dceac28a4e0d4aaa8e8dca3d6589dade7430eb07dc569cf0c46a58c055e253a5b39925ce9e8e86c7
-DIST editorconfig-geany-0.2.tar.gz 12322 BLAKE2B 2d203d3df6c6a7bb18a0b80cd33c041606b9732a83c5210fe3a66db587dedd81e1a1c2102e827980f6d85404cceed3b097f85e6c33aea81f21e9725fa7dd49e8 SHA512 cda2fd6c8ff5b7a2088840e5f2ceebb2f00f48281ff2943c4ffada30a7e70ce18ae9a84e5ac946e3affb3e5238512f829e545d31b59383722820b89c0309702d
diff --git a/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild b/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild
deleted file mode 100644
index 3ec785445ba2..000000000000
--- a/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="EditorConfig plugin for Geany"
-HOMEPAGE="https://github.com/editorconfig/editorconfig-geany/"
-EGIT_COMMIT="v${PV}"
-SRC_URI="https://github.com/editorconfig/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-CDEPEND="app-text/editorconfig-core-c:="
-DEPEND="${CDEPEND}
- dev-util/geany"
-RDEPEND="${CDEPEND}"
-BDEPEND="virtual/pkgconfig"
-S=${WORKDIR}/${PN}-${EGIT_COMMIT#v}
-
-src_prepare() {
- eapply_user
- sed -e "s|^\\(EDITORCONFIG_PREFIX =\\).*|\\1 ${EPREFIX}/usr|" \
- -e "s|\\bcc\\b|$(tc-getCC)|" \
- -e "s|^\\(CFLAGS =\\).*|\\1 -fPIC $("$(tc-getPKG_CONFIG)" --cflags geany geany) ${CFLAGS}|" \
- -e "s|^\\(LDFLAGS =.*\\)|\\1 ${LDFLAGS}|" \
- -e "s|\`pkg-config[^\`]*\`||" \
- -i Makefile || die
-
- # https://github.com/editorconfig/editorconfig-geany/pull/15
- cat << "EOF" > "${T}/GeanyFunctions.patch" || die
---- a/editorconfig-geany.c
-+++ b/editorconfig-geany.c
-@@ -33 +32,0 @@
--GeanyFunctions* geany_functions;
-EOF
- eapply -p1 "${T}/GeanyFunctions.patch"
-}
-
-src_install() {
- exeinto "$("$(tc-getPKG_CONFIG)" --variable=libdir geany)/geany"
- doexe ${PN}.so
- dodoc README.md
-}