commit: 1c9c54bff527b09e0a95bf6b3457299f04f0c76b
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 21 05:11:45 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Tue Dec 23 02:47:47 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=1c9c54bf
Add hardlink generators for LICENSE and README.md to testpath
Git does not handle links, by creating hardlinks, the files will be included in
any sdist operations.
---
testpath | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/testpath b/testpath
index b624ba2..6064710 100644
--- a/testpath
+++ b/testpath
@@ -18,3 +18,15 @@ else
export PATH="$(dirname $BASH_SOURCE[0])/../pyGPG/bin:$(dirname
$BASH_SOURCE[0])/gkeys/bin:$(dirname $BASH_SOURCE[0])/gkeys-ldap/bin:$(dirname
$BASH_SOURCE[0])/gkeys-gen/bin:${PATH}"
export PYTHONPATH="$(dirname $BASH_SOURCE[0])/../pyGPG/:$(dirname
$BASH_SOURCE[0])/../ssl-fetch/:$(dirname $BASH_SOURCE[0])/gkeys/:$(dirname
$BASH_SOURCE[0])/gkeys-gen/:$(dirname
$BASH_SOURCE[0])/gkeys-ldap/:${PYTHONPATH}"
fi
+
+# Create our LICENSE and README.md hardlinks
+# This way we only need one copy of each file,
+# but they get included in all 3 pkgs
+
+ln LICENSE gkeys/LICENSE
+ln LICENSE gkeys-gen/LICENSE
+ln LICENSE gkeys-ldap/LICENSE
+
+ln README.md gkeys/README.md
+ln README.md gkeys-gen/README.md
+ln README.md gkeys-ldap/README.md