From 9ee6d97c2883d42f204a533a8bc1f4562df778fb Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 16 Sep 2020 09:32:48 +0100 Subject: gentoo resync : 16.09.2020 --- sys-libs/blocksruntime/Manifest | 2 +- .../blocksruntime-0_pre20171027-r1.ebuild | 42 ++++++++++++++++++++++ .../blocksruntime-0_pre20171027.ebuild | 41 --------------------- 3 files changed, 43 insertions(+), 42 deletions(-) create mode 100644 sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild delete mode 100644 sys-libs/blocksruntime/blocksruntime-0_pre20171027.ebuild (limited to 'sys-libs/blocksruntime') diff --git a/sys-libs/blocksruntime/Manifest b/sys-libs/blocksruntime/Manifest index e1d36758f7b9..e4e212797798 100644 --- a/sys-libs/blocksruntime/Manifest +++ b/sys-libs/blocksruntime/Manifest @@ -1,4 +1,4 @@ AUX blocksruntime-0_pre20171027-ldflags-soname.patch 933 BLAKE2B 335a135b321bc57cfd63afa0c40ae91316dc5f446c4c412270ab78f3a2b9ee435900ebcdd8bb57dbd60d6a3d0bc412825a7f344141f3ef8ef6a042f29af34cc8 SHA512 7887727d2005dc70dee37b3dadbe49deeb9de7013e2d49f80248f71211a45f70e9a986991eb9bfc93668d635698f40504072fefdfca88511f8fc39121ba6f8f6 DIST blocksruntime-0_pre20171027.tar.gz 40571 BLAKE2B 5cb5cee10d482a3028b6ed496f7ed4fba25504c5e188dd21be37f0a65b72750e0ce31f7243e9cd848d10323e43e7d058fd2f7eb5ffed9a64e543d418ac96cfac SHA512 4008730f7ee4173f22c40220c4b87cd3f5cfadd12d5ddbaec244e3c4164111f036d0b859cf4bb5f2425313148f5c6445de30af2d4ccc83e1b97a66895ccc6dc5 -EBUILD blocksruntime-0_pre20171027.ebuild 905 BLAKE2B 60f6b3e05c433843c60238a64049cd6b1be61ff1bf5619e6e41989a43a51735f7e1c845edf9005e3becbb8cbe4e6c50ee2509bed81400b84161a5c8600f96010 SHA512 667e95c61e777c99057eedb2ebc197b6a584f2c0bcbd417065f66cccc86834564aa78226b7183a00c9beed5e665bca8530cba745d56cc0f2ec077fbc07c4a864 +EBUILD blocksruntime-0_pre20171027-r1.ebuild 958 BLAKE2B 47f91c62f762efd74226d77d3de061dd9c5cd8ce9f251c6a73e6ccce398a529ab717f85a7ec98d7546124f030c7acb33c6a4894e94dabcdf21b1858dc75b2ea4 SHA512 ee80b4b7fdd56e1ed52b9bfdec7674e0c9c0e0b2d038ea463a19faf80b1e79407b6a577729ed3bd6f6df734a351950d5780193e7cfec12fce217fdda44d06c8c MISC metadata.xml 337 BLAKE2B e2e4dc3f4bf390d4cd54194e85e6e2104e962d0ddd7b7381ddb7e1974c778bfe7d86162087b267faff5c306a6583b9ac092a79305e750ab6b1dbab758c6e780e SHA512 3dcbdca3013c551d20488c1b2d53525c5bc4e234403a2051c0dd8e7ad9db15f9cc946778764e1bf4aa19816a66a3922ed879614c01e46265195535fa91ebc481 diff --git a/sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild b/sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild new file mode 100644 index 000000000000..6c49e1748dba --- /dev/null +++ b/sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs vcs-snapshot + +COMMIT=9cc93ae2b58676c23fd02cf0c686fa15b7a3ff81 # 27 Oct 2017 + +DESCRIPTION="BlocksRuntime library needed for clang's -fblocks support" +HOMEPAGE="https://github.com/mackyle/blocksruntime" +SRC_URI="https://github.com/mackyle/blocksruntime/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +RDEPEND="" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-0_pre20171027-ldflags-soname.patch +) + +src_prepare() { + default + + tc-export CC AR RANLIB +} + +src_compile() { + ./buildlib -shared || die +} + +src_install() { + prefix="${EPREFIX}/usr" \ + includedir="${EPREFIX}/usr/include/blocksruntime" \ + libdir="${EPREFIX}/usr/$(get_libdir)" \ + DESTDIR="${D}" \ + ./installlib $(use static-libs || echo -shared) || die +} diff --git a/sys-libs/blocksruntime/blocksruntime-0_pre20171027.ebuild b/sys-libs/blocksruntime/blocksruntime-0_pre20171027.ebuild deleted file mode 100644 index a855b832dba2..000000000000 --- a/sys-libs/blocksruntime/blocksruntime-0_pre20171027.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs vcs-snapshot - -COMMIT=9cc93ae2b58676c23fd02cf0c686fa15b7a3ff81 # 27 Oct 2017 - -DESCRIPTION="BlocksRuntime library needed for clang's -fblocks support" -HOMEPAGE="https://github.com/mackyle/blocksruntime" -SRC_URI="https://github.com/mackyle/blocksruntime/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -RDEPEND="" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-0_pre20171027-ldflags-soname.patch -) - -src_prepare() { - default - - tc-export CC AR RANLIB -} - -src_compile() { - ./buildlib -shared || die -} - -src_install() { - prefix="${EPREFIX}/usr" \ - libdir="${EPREFIX}/usr/$(get_libdir)" \ - DESTDIR="${D}" \ - ./installlib $(use static-libs || echo -shared) || die -} -- cgit v1.2.3