diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-util/editorconfig-geany | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-util/editorconfig-geany')
| -rw-r--r-- | dev-util/editorconfig-geany/Manifest | 2 | ||||
| -rw-r--r-- | dev-util/editorconfig-geany/editorconfig-geany-0.1_p20160725.ebuild | 35 | ||||
| -rw-r--r-- | dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild | 36 | ||||
| -rw-r--r-- | dev-util/editorconfig-geany/metadata.xml | 11 |
4 files changed, 84 insertions, 0 deletions
diff --git a/dev-util/editorconfig-geany/Manifest b/dev-util/editorconfig-geany/Manifest new file mode 100644 index 000000000000..34ffd7e41b73 --- /dev/null +++ b/dev-util/editorconfig-geany/Manifest @@ -0,0 +1,2 @@ +DIST editorconfig-geany-0.1_p20160725.tar.gz 10336 BLAKE2B 0794a7c90c46eb107822a2ceba92ae5dbcafcbe11aac519d8cd2102d92b93c578f3f49e31f7e281df2c3a90facaf29df5fdfa0b2970dd75894356066f4c40a0a SHA512 ac8c4d46c17a5592c8f75a4100cfa1eaa55cb5333a1a6330ae84249d6df3b9ae4b454ee9c68b88ad777f5bea22ad1f3ce0a63bf89a1dd41d13abcfbd2a585734 +DIST editorconfig-geany-0.2.tar.gz 12322 BLAKE2B 2d203d3df6c6a7bb18a0b80cd33c041606b9732a83c5210fe3a66db587dedd81e1a1c2102e827980f6d85404cceed3b097f85e6c33aea81f21e9725fa7dd49e8 SHA512 cda2fd6c8ff5b7a2088840e5f2ceebb2f00f48281ff2943c4ffada30a7e70ce18ae9a84e5ac946e3affb3e5238512f829e545d31b59383722820b89c0309702d diff --git a/dev-util/editorconfig-geany/editorconfig-geany-0.1_p20160725.ebuild b/dev-util/editorconfig-geany/editorconfig-geany-0.1_p20160725.ebuild new file mode 100644 index 000000000000..de7614d662ba --- /dev/null +++ b/dev-util/editorconfig-geany/editorconfig-geany-0.1_p20160725.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="EditorConfig plugin for Geany" +HOMEPAGE="https://github.com/editorconfig/editorconfig-geany/" +EGIT_COMMIT="9dce3bb476728a8f4124aefe12e0a4ffc8567dff" +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}" +S=${WORKDIR}/${PN}-${EGIT_COMMIT} + +src_prepare() { + eapply_user + sed -e "s|^\\(EDITORCONFIG_PREFIX =\\).*|\\1 ${EPREFIX}/usr|" \ + -e "s|^\\(CFLAGS =\\).*|\\1 -fPIC $("$(tc-getPKG_CONFIG)" --cflags geany geany) ${CFLAGS}|" \ + -e "s|\`pkg-config[^\`]*\`||" \ + -i Makefile || die +} + +src_install() { + exeinto "$("$(tc-getPKG_CONFIG)" --variable=libdir geany)/geany" + doexe ${PN}.so + dodoc README.md +} diff --git a/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild b/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild new file mode 100644 index 000000000000..3e1268e041e6 --- /dev/null +++ b/dev-util/editorconfig-geany/editorconfig-geany-0.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2019 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}" +S=${WORKDIR}/${PN}-${EGIT_COMMIT#v} + +src_prepare() { + eapply_user + sed -e "s|^\\(EDITORCONFIG_PREFIX =\\).*|\\1 ${EPREFIX}/usr|" \ + -e "s|^\\(CFLAGS =\\).*|\\1 -fPIC $("$(tc-getPKG_CONFIG)" --cflags geany geany) ${CFLAGS}|" \ + -e "s|^\\(LDFLAGS =.*\\)|\\1 ${LDFLAGS}|" \ + -e "s|\`pkg-config[^\`]*\`||" \ + -i Makefile || die +} + +src_install() { + exeinto "$("$(tc-getPKG_CONFIG)" --variable=libdir geany)/geany" + doexe ${PN}.so + dodoc README.md +} diff --git a/dev-util/editorconfig-geany/metadata.xml b/dev-util/editorconfig-geany/metadata.xml new file mode 100644 index 000000000000..f5b5b1c4ebc8 --- /dev/null +++ b/dev-util/editorconfig-geany/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <upstream> + <remote-id type="github">editorconfig/editorconfig-geany</remote-id> + </upstream> + <maintainer type="person"> + <email>zmedico@gentoo.org</email> + </maintainer> + <origin>gentoo-staging</origin> +</pkgmetadata> |
