]> jturnerusa.dev Git - ebuilds/commitdiff
add pam_xdg and sqlitecpp
authorJohn Turner <jturner.usa+gentoo@gmail.com>
Thu, 24 Jul 2025 16:36:23 +0000 (12:36 -0400)
committerJohn Turner <jturner.usa+gentoo@gmail.com>
Thu, 24 Jul 2025 16:36:23 +0000 (12:36 -0400)
dev-cpp/sqlitecpp/Manifest [new file with mode: 0644]
dev-cpp/sqlitecpp/sqlitecpp-3.3.3.ebuild [new file with mode: 0644]
sys-auth/pam_xdg/Manifest [new file with mode: 0644]
sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild [new file with mode: 0644]

diff --git a/dev-cpp/sqlitecpp/Manifest b/dev-cpp/sqlitecpp/Manifest
new file mode 100644 (file)
index 0000000..e0e7ed0
--- /dev/null
@@ -0,0 +1 @@
+DIST 3.3.3.tar.gz 2733063 BLAKE2B cf4ddb9f3d245c21709868a397693b19210bfc219ea9123e0e1d08da29e8e4d3e6642f4bd5fff8f701e02c74e7b086343c9f905b17939467e93f6202f12c1a56 SHA512 23193108faaca4c1c7b0a05178bfdbb772a4e14dc145af1b3a7b35efe05a94b07200bdd5551afde44ab5eb3c6aeabbd70cfb0d710dc2750a8280e06fba94c494
diff --git a/dev-cpp/sqlitecpp/sqlitecpp-3.3.3.ebuild b/dev-cpp/sqlitecpp/sqlitecpp-3.3.3.ebuild
new file mode 100644 (file)
index 0000000..4c15a88
--- /dev/null
@@ -0,0 +1,20 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper. "
+HOMEPAGE="http://srombauts.github.io/SQLiteCpp"
+SRC_URI="https://github.com/SRombauts/SQLiteCpp/archive/refs/tags/3.3.3.tar.gz"
+
+S="${WORKDIR}/SQLiteCpp-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-db/sqlite"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-db/sqlite"
diff --git a/sys-auth/pam_xdg/Manifest b/sys-auth/pam_xdg/Manifest
new file mode 100644 (file)
index 0000000..1b27832
--- /dev/null
@@ -0,0 +1 @@
+DIST pam_xdg-0.0.1.tar.gz 2016 BLAKE2B 343bff517fce81bd80a44e963280b6c368a3e70393bfe90905a0fa7d5b99b7114dac7b9e1e8f4eaa78e8c6c8c9b3cbaab2e3f13db83a5803ef364a7c7de45f16 SHA512 08c4295babd28d77cdc989682bfa297298cda408546d0b78f7edd7c0a52bd49dbecd3a382ac8cf1769d23acabd3c4f7c613ed783434082e3d6ea5c3fd8579ed3
diff --git a/sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild b/sys-auth/pam_xdg/pam_xdg-0.0.1.ebuild
new file mode 100644 (file)
index 0000000..5af5d68
--- /dev/null
@@ -0,0 +1,24 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A pam module to create XDG runtime directories."
+HOMEPAGE="https://jturnerusa.dev/gitweb/?p=pam_xdg;a=summary"
+HASH="432cd2fe2f2e33b2cc8bec60246ea59b7e2210f9"
+SRC_URI="https://jturnerusa.dev/gitweb/?p=pam_xdg;a=snapshot;h=${HASH};sf=tgz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-432cd2f"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-cpp/sqlitecpp"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+       local emesonargs=(--prefix=/ --libdir=$(get_libdir))
+       meson_src_configure
+}