From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- dev-util/ostree/Manifest | 3 +++ dev-util/ostree/metadata.xml | 39 +++++++++++++++++++++++++++ dev-util/ostree/ostree-2018.5.ebuild | 52 ++++++++++++++++++++++++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 dev-util/ostree/Manifest create mode 100644 dev-util/ostree/metadata.xml create mode 100644 dev-util/ostree/ostree-2018.5.ebuild (limited to 'dev-util/ostree') diff --git a/dev-util/ostree/Manifest b/dev-util/ostree/Manifest new file mode 100644 index 000000000000..05157ac3dbe9 --- /dev/null +++ b/dev-util/ostree/Manifest @@ -0,0 +1,3 @@ +DIST ostree-2018.5.tar.xz 1937184 BLAKE2B ff126d2963296eb9ac270816efed7d2fbfdbcc7b0dba69007ae83e4499a46ef21a5b4e5d387de9bd387af0fe8d4086427d1aa9043c246a49676d116e919a93e6 SHA512 03854c662cddc1e0c7150bb62bbdd2990cf091ef126ddc5bb94494fee2ffb0383afb067b89d63c3e4f39849e2c8b7cabfd887d0d6fc1e7a43fda4fe7da1dc2e8 +EBUILD ostree-2018.5.ebuild 1183 BLAKE2B 749134dbf4e826fd6535cdd94ff66704d136404a1864d8dbbb7bf075cc42d89bd7091100d31fdc0a81b13aa452075c3ae3f4c6fe9d4931ada5e20a6a9d6cc65b SHA512 f1bb169d68fc6658b986b6d443537e6e1a7a05386588a966de08ef9c6da370524abb11ce6b8b95e94a7eeec7cefa4ced461526ffd8abbb1ee123457cc5de02f6 +MISC metadata.xml 1644 BLAKE2B 3085135779d4dbefb278b1b7ca4e80e4b892f38585aea5a71fde726d55b9975c0c097917940045a0770a5d8bc2c3732a371773a8cb6750dd272ca0b4a9488182 SHA512 5fb6f77a5068d1ff4aab1635ba41ed895f6b31cce39b571b4f3487c68242bb5634e7454bce318d0c585cb581533d1fe239344a9eb7f1485c4b75a5a24d78f5ad diff --git a/dev-util/ostree/metadata.xml b/dev-util/ostree/metadata.xml new file mode 100644 index 000000000000..d31a82267686 --- /dev/null +++ b/dev-util/ostree/metadata.xml @@ -0,0 +1,39 @@ + + + + + zmedico@gentoo.org + Zac Medico + + + This project is now known as "libostree", though it is + still appropriate to use the previous name: "OSTree" (or + "ostree"). The focus is on projects which use libostree's + shared library, rather than users directly invoking the command + line tools (except for build systems). However, in most of + the rest of the documentation, we will use the term "OSTree", + since it's slightly shorter, and changing all documentation + at once is impractical. We expect to transition to the new + name over time. + + As implied above, libostree is both a shared library and suite + of command line tools that combines a "git-like" model for + committing and downloading bootable filesystem trees, along + with a layer for deploying them and managing the bootloader + configuration. + + The core OSTree model is like git in that it checksums + individual files and has a content-addressed-object + store. It's unlike git in that it "checks out" the files + via hardlinks, and they thus need to be immutable to prevent + corruption. Therefore, another way to think of OSTree is that + it's just a more polished version of Linux VServer hardlinks. + + + Enable grub configuration generator + Use libsoup for networking + + + ostreedev/ostree + + diff --git a/dev-util/ostree/ostree-2018.5.ebuild b/dev-util/ostree/ostree-2018.5.ebuild new file mode 100644 index 000000000000..3c2aec24a4af --- /dev/null +++ b/dev-util/ostree/ostree-2018.5.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Operating system and container binary deployment and upgrades" +HOMEPAGE="https://ostree.readthedocs.io/en/latest/" +SRC_URI="https://github.com/ostreedev/${PN}/releases/download/v${PV}/lib${P}.tar.xz -> ${P}.tar.xz" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="grub selinux soup systemd zeroconf" +RESTRICT="test" + +S="${WORKDIR}/lib${P}" +COMMON_DEPEND=" + app-arch/libarchive:= + app-arch/xz-utils:= + app-crypt/gpgme:= + dev-libs/glib:= + dev-libs/libassuan:= + dev-libs/libgpg-error:= + dev-libs/openssl:= + net-misc/curl:= + sys-apps/util-linux:= + sys-fs/fuse:= + sys-libs/zlib:= + + grub? ( sys-boot/grub:* ) + selinux? ( sys-libs/libselinux:= ) + soup? ( net-libs/libsoup:= ) + systemd? ( sys-apps/systemd:= ) + zeroconf? ( net-dns/avahi:* ) +" +DEPEND=" + ${COMMON_DEPEND} + sys-devel/bison + sys-devel/flex +" +RDEPEND="${COMMON_DEPEND}" + +src_configure() { + unset ${!XDG_*} #657346 g-ir-scanner sandbox violation + econf \ + --with-crypto=openssl \ + --with-curl \ + --with-openssl \ + $(use_with soup) \ + $(use_with selinux ) \ + $(use_with zeroconf avahi) +} -- cgit v1.2.3