Commit 8454b15eef54ff57aa5c16a64dd93b4b717e5e0b

Authored by Georg Hopp
1 parent bd141390

Add fixed version of accountmanager to overlay

1   -EBUILD accountmanager-1.1.ebuild 884 SHA256 fd36b95d7fa814eba689c76f86897daba5bcceec5bc78db0bbbb09404100c6e3 SHA512 8d8651d66cf7911c00c6febd0dbbd1db1d1768df38b2559af93eaad0cc59e5e8ba2a0c20a3f349146f460b05cabe9664b4382c96a39d419372713a6b5384f54c WHIRLPOOL 262f176bd84cd6a66b07c453c678a0e0ae6076e0cd53c6faa69e4867cf86fac290ece18cb4e77f997114d623e969e8af84a995c6cd401c7d809262ef9beadcb1
2   -MISC metadata.xml 1181 SHA256 6fe17c12f2ec3fbfff40eb6de930d2e2b8a267b33e6e5fea85ebdf6921713b41 SHA512 0183459420315f9745ae7d7785093c5442b022debe9b72dd3d5597db1c1dc5166a39ff0b3593d6c6b200e64ae741ce0aaf4e72aa655f5460770247e19c74c9dd WHIRLPOOL d805e3d31dc84a17c7cf3878c8fbd8646ce19e307e5d8fdab53aafadd9fe223167f064a6c462c431d0075896bf9a1ad19f953aedf81fd60bfd81fe758527d498
  1 +EBUILD accountmanager-1.1.ebuild 884 BLAKE2B d3e23d0dab14ed42f52555fd2379f6fb95d4d8897c80eb0b2cf0b3cb182cad06c5f89d87483d6a54a88112b7cc5a16d94842314d6471493dccf1b0a807da7ba2 SHA512 8d8651d66cf7911c00c6febd0dbbd1db1d1768df38b2559af93eaad0cc59e5e8ba2a0c20a3f349146f460b05cabe9664b4382c96a39d419372713a6b5384f54c
  2 +EBUILD accountmanager-1.2.ebuild 884 BLAKE2B d3e23d0dab14ed42f52555fd2379f6fb95d4d8897c80eb0b2cf0b3cb182cad06c5f89d87483d6a54a88112b7cc5a16d94842314d6471493dccf1b0a807da7ba2 SHA512 8d8651d66cf7911c00c6febd0dbbd1db1d1768df38b2559af93eaad0cc59e5e8ba2a0c20a3f349146f460b05cabe9664b4382c96a39d419372713a6b5384f54c
  3 +MISC metadata.xml 1181 BLAKE2B a59792b23a9845947ac79e72b470e0b0e09b9355a553790972ca918854caaeec5f8ddcf96b9d5050a72cad571fec257763a78f957c2f32fedc38a813e3a6eec0 SHA512 0183459420315f9745ae7d7785093c5442b022debe9b72dd3d5597db1c1dc5166a39ff0b3593d6c6b200e64ae741ce0aaf4e72aa655f5460770247e19c74c9dd
... ...
  1 +# Copyright 1999-2017 Gentoo Foundation
  2 +# Distributed under the terms of the GNU General Public License v2
  3 +# $Id$
  4 +
  5 +EAPI=6
  6 +
  7 +inherit eutils git-r3
  8 +
  9 +DESCRIPTION="Application to manage credentials and store credentials"
  10 +HOMEPAGE="https://gitlab.weird-web-workers.org/ghopp/acountmanager"
  11 +EGIT_REPO_URI="https://gitlab.weird-web-workers.org/ghopp/acountmanager.git"
  12 +EGIT_COMMIT="v${PV}"
  13 +
  14 +LICENSE="GPL-3+"
  15 +
  16 +SLOT="0"
  17 +
  18 +KEYWORDS="~x86 ~amn64"
  19 +
  20 +DEPEND=">=sys-devel/make-4.2.1"
  21 +RDEPEND="
  22 + >=sys-apps/gawk-4.1.4
  23 + >=sys-apps/coreutils-8.26
  24 + >=app-crypt/gnupg-2.1.17-r1
  25 + >=dev-db/sqlite-3.15.2
  26 + >=x11-misc/xclip-0.13
  27 +"
  28 +
  29 +# Source directory; the dir where the sources can be found (automatically
  30 +# unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P}
  31 +# If you don't need to change it, leave the S= line out of the ebuild
  32 +# to keep it tidy.
  33 +#S=${WORKDIR}/${P}
  34 +
  35 +#src_configure() {}
... ...
Please register or login to post a comment