[arch-commits] Commit in breezy/repos (testing-x86_64 testing-x86_64/PKGBUILD)
Maxime Gauduin
alucryd at archlinux.org
Tue Feb 4 12:49:35 UTC 2020
Date: Tuesday, February 4, 2020 @ 12:49:35
Author: alucryd
Revision: 374579
archrelease: copy trunk to testing-x86_64
Added:
breezy/repos/testing-x86_64/
breezy/repos/testing-x86_64/PKGBUILD
(from rev 374578, breezy/trunk/PKGBUILD)
----------+
PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
Copied: breezy/repos/testing-x86_64/PKGBUILD (from rev 374578, breezy/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-02-04 12:49:35 UTC (rev 374579)
@@ -0,0 +1,47 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Adam Fontenot <adam.m.fontenot at gmail.com>
+
+pkgname=breezy
+pkgver=3.0.2.3
+pkgrel=2
+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
+)
+provides=(bzr)
+conflicts=(bzr)
+replaces=(bzr)
+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
+ ln -s brz "${pkgdir}"/usr/bin/bzr # backwards compatibility
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list