[arch-commits] Commit in (breezy breezy/trunk breezy/trunk/PKGBUILD)

Maxime Gauduin alucryd at archlinux.org
Mon Feb 3 19:13:18 UTC 2020


    Date: Monday, February 3, 2020 @ 19:13:18
  Author: alucryd
Revision: 374547

add breezy

Added:
  breezy/
  breezy/trunk/
  breezy/trunk/PKGBUILD

----------+
 PKGBUILD |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

Added: breezy/trunk/PKGBUILD
===================================================================
--- breezy/trunk/PKGBUILD	                        (rev 0)
+++ breezy/trunk/PKGBUILD	2020-02-03 19:13:18 UTC (rev 374547)
@@ -0,0 +1,43 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Adam Fontenot <adam.m.fontenot at gmail.com>
+
+pkgname=breezy
+pkgver=3.0.2.3
+pkgrel=1
+pkgdesc='A decentralized revision control system with support for Bazaar and Git file formats'
+arch=(x86_64)
+url=https://www.breezy-vcs.org/
+license=(GPL2)
+depends=(
+  python-configobj
+  python-dulwich
+  python-fastimport
+  python-patiencediff
+  python-six
+)
+makedepends=(
+  git
+  python-setuptools
+)
+source=(git+https://github.com/breezy-team/breezy.git#tag=aa1875e6a279e8c3eb9f86e143193d4967358207)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd breezy
+
+  git describe --tags | sed 's/-/./g'
+}
+
+build() {
+  cd breezy
+
+  python setup.py build
+}
+
+package() {
+  cd breezy
+
+  python setup.py install --root="${pkgdir}" --install-data=usr/share --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list