diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-18 18:13:53 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-18 18:13:53 +0100 |
commit | ef6318cd038746ce88b68c67b7015c150bb5deb6 (patch) | |
tree | 73492399b448a5ca891aed3ed9dd8c93d218eb62 /dev-libs/libdbpp-postgresql | |
parent | Stabilise slice-parser (diff) | |
download | portage-ef6318cd038746ce88b68c67b7015c150bb5deb6.tar.bz2 portage-ef6318cd038746ce88b68c67b7015c150bb5deb6.tar.xz portage-ef6318cd038746ce88b68c67b7015c150bb5deb6.zip |
Big update of all the things
Focus here was getting the latest out with support for current versions
of glibmm.
Diffstat (limited to 'dev-libs/libdbpp-postgresql')
-rw-r--r-- | dev-libs/libdbpp-postgresql/Manifest | 2 | ||||
-rw-r--r-- | dev-libs/libdbpp-postgresql/libdbpp-postgresql-1.4.10.ebuild | 33 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-libs/libdbpp-postgresql/Manifest b/dev-libs/libdbpp-postgresql/Manifest index 352572b..fc26d8f 100644 --- a/dev-libs/libdbpp-postgresql/Manifest +++ b/dev-libs/libdbpp-postgresql/Manifest @@ -1,2 +1,4 @@ +DIST libdbpp-postgresql-1.4.10.tar.xz 17416 BLAKE2B 64d51c08e81605f3e96f9b7d1e01b4484c941f01d789e36ec4fb2bb34d4c81eee88888c80c1299ea1abaf56e0558d680ddfe7c8dca9b51454ea7f91db32d667c SHA512 7d3d311ac467e3fdbf793108cf274381f276ef462eba358d3b83ebafe3d360dc134fdd852d7aa6f6bf0b8596a4418eb225780b91fcc354bd2f96956c2bef5d4e DIST libdbpp-postgresql-1.4.9.tar.xz 17372 BLAKE2B be356c0ae9a2637f7769ec5bc54a71493f7dea4ddd2bee0ac2937c96fce36a6a8ffe43436ab75adaba5fcf11d220d06e57a562db2563d6bb34960b19d284fa93 SHA512 7e921b07ba283e2292447e9b8cb3dd3de17518786dad17ae9bffe3d9bb1f789bcf83386fec10df0eac7854427e126becd3bd37f937fcf850cf365e6b2d78fb04 +EBUILD libdbpp-postgresql-1.4.10.ebuild 563 BLAKE2B f17f8fac130bcafea697e20738a18d82904011ce532e31c530395b4b761b379ccee94b3643357f779c55e3126b9bdd7521d977d1618eb9222fb96c9d8a70e5a4 SHA512 974c374ba22d92f58f8c68dd9908c9bd2485c6b73646581265e150fcc01f149a7f8906d98bcec17c0eb5650e0eb4556170eb0f5895f906ca2fc74ae7a1686696 EBUILD libdbpp-postgresql-1.4.9.ebuild 558 BLAKE2B 3a69f1d23313a2f4be9fe6c6137726286dadd64e449a5835476667fbdbc8e9ce08fb0cd5dd9c4fa325d3e8bc8dfa1dbb0e6368f85b6f755db42766b799933665 SHA512 a9fb064b960648eee5e6eeeab7b28711a9e9804aecde3f0a7877d03d2e8314004cf18927f9807662253ad54c90d579fa093a821ec9091008028a924933c0f307 diff --git a/dev-libs/libdbpp-postgresql/libdbpp-postgresql-1.4.10.ebuild b/dev-libs/libdbpp-postgresql/libdbpp-postgresql-1.4.10.ebuild new file mode 100644 index 0000000..5358fb0 --- /dev/null +++ b/dev-libs/libdbpp-postgresql/libdbpp-postgresql-1.4.10.ebuild @@ -0,0 +1,33 @@ +EAPI="7" + +inherit bjam + +DESCRIPTION="C++ database connectivity PostgreSQL components" +HOMEPAGE="http://libdbpp.randomdan.homeip.net/postgresql" + +SRC_URI="https://git.randomdan.homeip.net/repo/${PN}/snapshot/${P}.tar.xz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +RDEPEND=" + dev-libs/boost:= + >=dev-libs/libdbpp-1.4.10:= + dev-db/postgresql + >=dev-libs/libadhocutil-0.9.3:= +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + dev-build/b2 +" + +src_compile() { + bjambuild libpqpp//dbpp-postgresql +} + +src_install() { + bjaminstall libpqpp//install \ + -i /dbpp-postgresql +} + |