[arch-commits] Commit in python-pygit2/repos (10 files)
Gaetan Bisson
bisson at archlinux.org
Thu Sep 3 05:39:06 UTC 2015
Date: Thursday, September 3, 2015 @ 07:39:05
Author: bisson
Revision: 139124
db-move: moved python-pygit2 from [community-testing] to [community] (i686, x86_64)
Added:
python-pygit2/repos/community-i686/0001-Fix-data-type-of-options-in-init_repository.patch
(from rev 139122, python-pygit2/repos/community-testing-i686/0001-Fix-data-type-of-options-in-init_repository.patch)
python-pygit2/repos/community-i686/PKGBUILD
(from rev 139122, python-pygit2/repos/community-testing-i686/PKGBUILD)
python-pygit2/repos/community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch
(from rev 139122, python-pygit2/repos/community-testing-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch)
python-pygit2/repos/community-x86_64/PKGBUILD
(from rev 139122, python-pygit2/repos/community-testing-x86_64/PKGBUILD)
Deleted:
python-pygit2/repos/community-i686/0001-Fix-data-type-of-options-in-init_repository.patch
python-pygit2/repos/community-i686/PKGBUILD
python-pygit2/repos/community-testing-i686/
python-pygit2/repos/community-testing-x86_64/
python-pygit2/repos/community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch
python-pygit2/repos/community-x86_64/PKGBUILD
-------------------------------------------------------------------------+
/0001-Fix-data-type-of-options-in-init_repository.patch | 104 ++++++++++
/PKGBUILD | 66 ++++++
community-i686/0001-Fix-data-type-of-options-in-init_repository.patch | 52 -----
community-i686/PKGBUILD | 31 --
community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch | 52 -----
community-x86_64/PKGBUILD | 31 --
6 files changed, 170 insertions(+), 166 deletions(-)
Deleted: community-i686/0001-Fix-data-type-of-options-in-init_repository.patch
===================================================================
--- community-i686/0001-Fix-data-type-of-options-in-init_repository.patch 2015-09-03 05:39:04 UTC (rev 139123)
+++ community-i686/0001-Fix-data-type-of-options-in-init_repository.patch 2015-09-03 05:39:05 UTC (rev 139124)
@@ -1,52 +0,0 @@
-From 0437eb7b8b184da5b5700b5e0cd96e1f442d331e Mon Sep 17 00:00:00 2001
-From: Lukas Fleischer <info at cryptocrack.de>
-Date: Sat, 10 Jan 2015 20:38:39 +0100
-Subject: [PATCH] Fix data type of options in init_repository()
-
-Initializers for the char * fields of the git_repository_init_options
-structure must be cdata pointers.
-
-Signed-off-by: Lukas Fleischer <info at cryptocrack.de>
----
- pygit2/__init__.py | 25 ++++++++++++++++++++-----
- 1 file changed, 20 insertions(+), 5 deletions(-)
-
-diff --git a/pygit2/__init__.py b/pygit2/__init__.py
-index 2674063..995fe6c 100644
---- a/pygit2/__init__.py
-+++ b/pygit2/__init__.py
-@@ -86,11 +86,26 @@ def init_repository(path, bare=False,
- C.git_repository_init_init_options(options, C.GIT_REPOSITORY_INIT_OPTIONS_VERSION)
- options.flags = flags
- options.mode = mode
-- options.workdir_path = to_bytes(workdir_path)
-- options.description = to_bytes(description)
-- options.template_path = to_bytes(template_path)
-- options.initial_head = to_bytes(initial_head)
-- options.origin_url = to_bytes(origin_url)
-+
-+ if workdir_path:
-+ workdir_path_ref = ffi.new('char []', to_bytes(workdir_path))
-+ options.workdir_path = workdir_path_ref
-+
-+ if description:
-+ description_ref = ffi.new('char []', to_bytes(description))
-+ options.description = description_ref
-+
-+ if template_path:
-+ template_path_ref = ffi.new('char []', to_bytes(template_path))
-+ options.template_path = template_path_ref
-+
-+ if initial_head:
-+ initial_head_ref = ffi.new('char []', to_bytes(initial_head))
-+ options.initial_head = initial_head_ref
-+
-+ if origin_url:
-+ origin_url_ref = ffi.new('char []', to_bytes(origin_url))
-+ options.origin_url = origin_url_ref
-
- # Call
- crepository = ffi.new('git_repository **')
---
-2.2.1
-
Copied: python-pygit2/repos/community-i686/0001-Fix-data-type-of-options-in-init_repository.patch (from rev 139122, python-pygit2/repos/community-testing-i686/0001-Fix-data-type-of-options-in-init_repository.patch)
===================================================================
--- community-i686/0001-Fix-data-type-of-options-in-init_repository.patch (rev 0)
+++ community-i686/0001-Fix-data-type-of-options-in-init_repository.patch 2015-09-03 05:39:05 UTC (rev 139124)
@@ -0,0 +1,52 @@
+From 0437eb7b8b184da5b5700b5e0cd96e1f442d331e Mon Sep 17 00:00:00 2001
+From: Lukas Fleischer <info at cryptocrack.de>
+Date: Sat, 10 Jan 2015 20:38:39 +0100
+Subject: [PATCH] Fix data type of options in init_repository()
+
+Initializers for the char * fields of the git_repository_init_options
+structure must be cdata pointers.
+
+Signed-off-by: Lukas Fleischer <info at cryptocrack.de>
+---
+ pygit2/__init__.py | 25 ++++++++++++++++++++-----
+ 1 file changed, 20 insertions(+), 5 deletions(-)
+
+diff --git a/pygit2/__init__.py b/pygit2/__init__.py
+index 2674063..995fe6c 100644
+--- a/pygit2/__init__.py
++++ b/pygit2/__init__.py
+@@ -86,11 +86,26 @@ def init_repository(path, bare=False,
+ C.git_repository_init_init_options(options, C.GIT_REPOSITORY_INIT_OPTIONS_VERSION)
+ options.flags = flags
+ options.mode = mode
+- options.workdir_path = to_bytes(workdir_path)
+- options.description = to_bytes(description)
+- options.template_path = to_bytes(template_path)
+- options.initial_head = to_bytes(initial_head)
+- options.origin_url = to_bytes(origin_url)
++
++ if workdir_path:
++ workdir_path_ref = ffi.new('char []', to_bytes(workdir_path))
++ options.workdir_path = workdir_path_ref
++
++ if description:
++ description_ref = ffi.new('char []', to_bytes(description))
++ options.description = description_ref
++
++ if template_path:
++ template_path_ref = ffi.new('char []', to_bytes(template_path))
++ options.template_path = template_path_ref
++
++ if initial_head:
++ initial_head_ref = ffi.new('char []', to_bytes(initial_head))
++ options.initial_head = initial_head_ref
++
++ if origin_url:
++ origin_url_ref = ffi.new('char []', to_bytes(origin_url))
++ options.origin_url = origin_url_ref
+
+ # Call
+ crepository = ffi.new('git_repository **')
+--
+2.2.1
+
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2015-09-03 05:39:04 UTC (rev 139123)
+++ community-i686/PKGBUILD 2015-09-03 05:39:05 UTC (rev 139124)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay <danielmicay at gmail.com>
-
-pkgbase=python-pygit2
-pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.22.0
-pkgrel=10
-pkgdesc='Python bindings for libgit2'
-url="https://github.com/libgit2/pygit2"
-depends=(libgit2)
-makedepends=(python-cffi python2-cffi python-setuptools python2-setuptools)
-arch=(i686 x86_64)
-license=('GPL2')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz")
-md5sums=('a73eaf01c42527db7673d11fb5b37654')
-
-package_python-pygit2() {
- cd "pygit2-$pkgver"
- depends+=(python python-cffi)
- replaces=(python-libgit2)
- conflicts=(python-libgit2)
- LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pygit2() {
- cd "pygit2-$pkgver"
- depends+=(python2 python2-cffi)
- replaces=(python2-libgit2)
- conflicts=(python2-libgit2)
- python2 setup.py install --root="$pkgdir" --optimize=1
-}
Copied: python-pygit2/repos/community-i686/PKGBUILD (from rev 139122, python-pygit2/repos/community-testing-i686/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 05:39:05 UTC (rev 139124)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Daniel Micay <danielmicay at gmail.com>
+
+pkgbase=python-pygit2
+pkgname=(python-pygit2 python2-pygit2)
+pkgver=0.23.0
+pkgrel=1
+pkgdesc='Python bindings for libgit2'
+url="https://github.com/libgit2/pygit2"
+depends=(libgit2)
+makedepends=(python-cffi python2-cffi python-setuptools python2-setuptools git)
+arch=(i686 x86_64)
+license=('GPL2')
+#source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz")
+#md5sums=('a73eaf01c42527db7673d11fb5b37654')
+source=('git+https://github.com/libgit2/pygit2.git#commit=25d02259df7b73ec220b2a0095ad4a2d7d525f96')
+sha1sums=('SKIP')
+
+package_python-pygit2() {
+ cd "pygit2"
+ depends+=(python python-cffi)
+ replaces=(python-libgit2)
+ conflicts=(python-libgit2)
+ LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygit2() {
+ cd "pygit2"
+ depends+=(python2 python2-cffi)
+ replaces=(python2-libgit2)
+ conflicts=(python2-libgit2)
+ python2 setup.py install --root="$pkgdir" --optimize=1
+}
Deleted: community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch
===================================================================
--- community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch 2015-09-03 05:39:04 UTC (rev 139123)
+++ community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch 2015-09-03 05:39:05 UTC (rev 139124)
@@ -1,52 +0,0 @@
-From 0437eb7b8b184da5b5700b5e0cd96e1f442d331e Mon Sep 17 00:00:00 2001
-From: Lukas Fleischer <info at cryptocrack.de>
-Date: Sat, 10 Jan 2015 20:38:39 +0100
-Subject: [PATCH] Fix data type of options in init_repository()
-
-Initializers for the char * fields of the git_repository_init_options
-structure must be cdata pointers.
-
-Signed-off-by: Lukas Fleischer <info at cryptocrack.de>
----
- pygit2/__init__.py | 25 ++++++++++++++++++++-----
- 1 file changed, 20 insertions(+), 5 deletions(-)
-
-diff --git a/pygit2/__init__.py b/pygit2/__init__.py
-index 2674063..995fe6c 100644
---- a/pygit2/__init__.py
-+++ b/pygit2/__init__.py
-@@ -86,11 +86,26 @@ def init_repository(path, bare=False,
- C.git_repository_init_init_options(options, C.GIT_REPOSITORY_INIT_OPTIONS_VERSION)
- options.flags = flags
- options.mode = mode
-- options.workdir_path = to_bytes(workdir_path)
-- options.description = to_bytes(description)
-- options.template_path = to_bytes(template_path)
-- options.initial_head = to_bytes(initial_head)
-- options.origin_url = to_bytes(origin_url)
-+
-+ if workdir_path:
-+ workdir_path_ref = ffi.new('char []', to_bytes(workdir_path))
-+ options.workdir_path = workdir_path_ref
-+
-+ if description:
-+ description_ref = ffi.new('char []', to_bytes(description))
-+ options.description = description_ref
-+
-+ if template_path:
-+ template_path_ref = ffi.new('char []', to_bytes(template_path))
-+ options.template_path = template_path_ref
-+
-+ if initial_head:
-+ initial_head_ref = ffi.new('char []', to_bytes(initial_head))
-+ options.initial_head = initial_head_ref
-+
-+ if origin_url:
-+ origin_url_ref = ffi.new('char []', to_bytes(origin_url))
-+ options.origin_url = origin_url_ref
-
- # Call
- crepository = ffi.new('git_repository **')
---
-2.2.1
-
Copied: python-pygit2/repos/community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch (from rev 139122, python-pygit2/repos/community-testing-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch)
===================================================================
--- community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch (rev 0)
+++ community-x86_64/0001-Fix-data-type-of-options-in-init_repository.patch 2015-09-03 05:39:05 UTC (rev 139124)
@@ -0,0 +1,52 @@
+From 0437eb7b8b184da5b5700b5e0cd96e1f442d331e Mon Sep 17 00:00:00 2001
+From: Lukas Fleischer <info at cryptocrack.de>
+Date: Sat, 10 Jan 2015 20:38:39 +0100
+Subject: [PATCH] Fix data type of options in init_repository()
+
+Initializers for the char * fields of the git_repository_init_options
+structure must be cdata pointers.
+
+Signed-off-by: Lukas Fleischer <info at cryptocrack.de>
+---
+ pygit2/__init__.py | 25 ++++++++++++++++++++-----
+ 1 file changed, 20 insertions(+), 5 deletions(-)
+
+diff --git a/pygit2/__init__.py b/pygit2/__init__.py
+index 2674063..995fe6c 100644
+--- a/pygit2/__init__.py
++++ b/pygit2/__init__.py
+@@ -86,11 +86,26 @@ def init_repository(path, bare=False,
+ C.git_repository_init_init_options(options, C.GIT_REPOSITORY_INIT_OPTIONS_VERSION)
+ options.flags = flags
+ options.mode = mode
+- options.workdir_path = to_bytes(workdir_path)
+- options.description = to_bytes(description)
+- options.template_path = to_bytes(template_path)
+- options.initial_head = to_bytes(initial_head)
+- options.origin_url = to_bytes(origin_url)
++
++ if workdir_path:
++ workdir_path_ref = ffi.new('char []', to_bytes(workdir_path))
++ options.workdir_path = workdir_path_ref
++
++ if description:
++ description_ref = ffi.new('char []', to_bytes(description))
++ options.description = description_ref
++
++ if template_path:
++ template_path_ref = ffi.new('char []', to_bytes(template_path))
++ options.template_path = template_path_ref
++
++ if initial_head:
++ initial_head_ref = ffi.new('char []', to_bytes(initial_head))
++ options.initial_head = initial_head_ref
++
++ if origin_url:
++ origin_url_ref = ffi.new('char []', to_bytes(origin_url))
++ options.origin_url = origin_url_ref
+
+ # Call
+ crepository = ffi.new('git_repository **')
+--
+2.2.1
+
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2015-09-03 05:39:04 UTC (rev 139123)
+++ community-x86_64/PKGBUILD 2015-09-03 05:39:05 UTC (rev 139124)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay <danielmicay at gmail.com>
-
-pkgbase=python-pygit2
-pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.22.0
-pkgrel=10
-pkgdesc='Python bindings for libgit2'
-url="https://github.com/libgit2/pygit2"
-depends=(libgit2)
-makedepends=(python-cffi python2-cffi python-setuptools python2-setuptools)
-arch=(i686 x86_64)
-license=('GPL2')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz")
-md5sums=('a73eaf01c42527db7673d11fb5b37654')
-
-package_python-pygit2() {
- cd "pygit2-$pkgver"
- depends+=(python python-cffi)
- replaces=(python-libgit2)
- conflicts=(python-libgit2)
- LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pygit2() {
- cd "pygit2-$pkgver"
- depends+=(python2 python2-cffi)
- replaces=(python2-libgit2)
- conflicts=(python2-libgit2)
- python2 setup.py install --root="$pkgdir" --optimize=1
-}
Copied: python-pygit2/repos/community-x86_64/PKGBUILD (from rev 139122, python-pygit2/repos/community-testing-x86_64/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2015-09-03 05:39:05 UTC (rev 139124)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Daniel Micay <danielmicay at gmail.com>
+
+pkgbase=python-pygit2
+pkgname=(python-pygit2 python2-pygit2)
+pkgver=0.23.0
+pkgrel=1
+pkgdesc='Python bindings for libgit2'
+url="https://github.com/libgit2/pygit2"
+depends=(libgit2)
+makedepends=(python-cffi python2-cffi python-setuptools python2-setuptools git)
+arch=(i686 x86_64)
+license=('GPL2')
+#source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz")
+#md5sums=('a73eaf01c42527db7673d11fb5b37654')
+source=('git+https://github.com/libgit2/pygit2.git#commit=25d02259df7b73ec220b2a0095ad4a2d7d525f96')
+sha1sums=('SKIP')
+
+package_python-pygit2() {
+ cd "pygit2"
+ depends+=(python python-cffi)
+ replaces=(python-libgit2)
+ conflicts=(python-libgit2)
+ LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygit2() {
+ cd "pygit2"
+ depends+=(python2 python2-cffi)
+ replaces=(python2-libgit2)
+ conflicts=(python2-libgit2)
+ python2 setup.py install --root="$pkgdir" --optimize=1
+}
More information about the arch-commits
mailing list