Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/atl/
Date: Sun, 05 Jun 2022 20:58:05
Message-Id: 1654462678.5becc42e83524697a03072dbf3d30cdcdb7a4ded.Alessandro-Barbieri@gentoo
1 commit: 5becc42e83524697a03072dbf3d30cdcdb7a4ded
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 5 18:02:47 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sun Jun 5 20:57:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5becc42e
7
8 dev-libs/atl: new package, add 2.2.1
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-libs/atl/Manifest | 1 +
13 dev-libs/atl/atl-2.2.1.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 dev-libs/atl/metadata.xml | 15 +++++++++++++++
15 3 files changed, 50 insertions(+)
16
17 diff --git a/dev-libs/atl/Manifest b/dev-libs/atl/Manifest
18 new file mode 100644
19 index 000000000..faea9b048
20 --- /dev/null
21 +++ b/dev-libs/atl/Manifest
22 @@ -0,0 +1 @@
23 +DIST atl-2.2.1.gh.tar.gz 36765 BLAKE2B 6bba939452f86e1021555e860704a76a28f99dee575d8d3ea8bd431ff2b37ac27bf60745af625fd69980d8bfea46d620f5de7a2d68371a4bbaba06bab8a3f331 SHA512 c0372fa1e16e674a6d079dfd783a383bea4283c6b25e379d94e09100ae3c9195112fdade2551e16e435475e04af9086f51a370181d93c6c927677c7f14de5a61
24
25 diff --git a/dev-libs/atl/atl-2.2.1.ebuild b/dev-libs/atl/atl-2.2.1.ebuild
26 new file mode 100644
27 index 000000000..34d5e4169
28 --- /dev/null
29 +++ b/dev-libs/atl/atl-2.2.1.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="Library for the creation and manipulation of lists"
39 +HOMEPAGE="https://github.com/GTkorvo/atl"
40 +SRC_URI="https://github.com/GTKorvo/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="test +utilities"
46 +
47 +RESTRICT="!test? ( test )"
48 +
49 +src_configure() {
50 + local mycmakeargs=(
51 + -DATL_INSTALL_HEADERS=ON
52 + -DATL_INSTALL_PKGCONFIG=ON
53 + -DATL_QUIET=OFF
54 + -DBUILD_SHARED_LIBS=ON
55 +
56 + -DATL_LIBRARIES_ONLY=$(usex utilities 'OFF' 'ON')
57 + -DBUILD_TESTING=$(usex test)
58 + )
59 + cmake_src_configure
60 +}
61 +
62 +src_install() {
63 + cmake_src_install
64 +}
65
66 diff --git a/dev-libs/atl/metadata.xml b/dev-libs/atl/metadata.xml
67 new file mode 100644
68 index 000000000..4eff83b3f
69 --- /dev/null
70 +++ b/dev-libs/atl/metadata.xml
71 @@ -0,0 +1,15 @@
72 +<?xml version="1.0" encoding="UTF-8"?>
73 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
74 +<pkgmetadata>
75 + <maintainer type="person">
76 + <email>lssndrbarbieri@×××××.com</email>
77 + <name>Alessandro Barbieri</name>
78 + </maintainer>
79 + <upstream>
80 + <bugs-to>https://github.com/GTKorvo/atl/issues</bugs-to>
81 + <remote-id type="github">GTKorvo/atl</remote-id>
82 + </upstream>
83 + <use>
84 + <flag name="utilities">Build utilities</flag>
85 + </use>
86 +</pkgmetadata>