Date: Wednesday, May 3, 2023 @ 18:21:05
  Author: dvzrv
Revision: 1458431

archrelease: copy trunk to community-x86_64

Added:
  dtc/repos/community-x86_64/PKGBUILD
    (from rev 1458430, dtc/trunk/PKGBUILD)
  dtc/repos/community-x86_64/pyscm.patch
    (from rev 1458430, dtc/trunk/pyscm.patch)
Deleted:
  dtc/repos/community-x86_64/PKGBUILD
  dtc/repos/community-x86_64/pyscm.patch

-------------+
 PKGBUILD    |   90 +++++++++++++++++++++++++++++-----------------------------
 pyscm.patch |   36 +++++++++++------------
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-05-03 18:20:50 UTC (rev 1458430)
+++ PKGBUILD    2023-05-03 18:21:05 UTC (rev 1458431)
@@ -1,45 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Frederic Bezies <fredbezies at gmail dot com>
-
-pkgname=dtc
-pkgver=1.7.0
-pkgrel=3
-pkgdesc='Device Tree Compiler'
-url='https://www.devicetree.org/'
-arch=(x86_64)
-license=(GPL2)
-depends=(libyaml)
-makedepends=(meson swig python-setuptools-scm)
-checkdepends=(valgrind)
-source=(https://www.kernel.org/pub/software/utils/dtc/dtc-$pkgver.tar.xz
-        
fix_test.patch::https://github.com/dgibson/dtc/commit/32174a66efa4ad19fc6a2a6422e4af2ae4f055cb.patch
-       
fix_meson_version.patch::https://github.com/dgibson/dtc/commit/64a907f08b9bedd89833c1eee674148cff2343c6.patch
-       fix_meson_version2.patch::https://github.com/dgibson/dtc/pull/95.patch
-        pyscm.patch)
-sha256sums=('29edce3d302a15563d8663198bbc398c5a0554765c83830d0d4c0409d21a16c4'
-            '4538d60e5837cc1b7ead839eab2062a8677cf1ee7582fed76d3c4f043b3c0765'
-            '31ba6e7191cdb88a12f3ffa3016006cdc820c7588a54214e34326a67b68bd984'
-            '1c6f13e57e4b635a21dbb6b515e556bb9d28564b6f119edd852e41c019410bb6'
-            '3198c9e41cbebb0bcd9caa5de0940ccaf02b3b3bcc00fbc19bfdf3cdb8a075bb')
-
-prepare() {
-  cd dtc-$pkgver
-  patch -Np1 < ../fix_test.patch
-  patch -Np1 < ../fix_meson_version.patch
-  patch -Np1 < ../fix_meson_version2.patch
-  patch -Np1 < ../pyscm.patch
-  sed -i "s/@VERSION@/$pkgver/" setup.py
-}
-
-build() {
-  arch-meson dtc-$pkgver build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: dtc/repos/community-x86_64/PKGBUILD (from rev 1458430, 
dtc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-05-03 18:21:05 UTC (rev 1458431)
@@ -0,0 +1,45 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Frederic Bezies <fredbezies at gmail dot com>
+
+pkgname=dtc
+pkgver=1.7.0
+pkgrel=4
+pkgdesc='Device Tree Compiler'
+url='https://www.devicetree.org/'
+arch=(x86_64)
+license=(GPL2)
+depends=(bash glibc libyaml python)
+makedepends=(meson swig python-setuptools-scm)
+checkdepends=(valgrind)
+source=(https://www.kernel.org/pub/software/utils/dtc/dtc-$pkgver.tar.xz
+        
fix_test.patch::https://github.com/dgibson/dtc/commit/32174a66efa4ad19fc6a2a6422e4af2ae4f055cb.patch
+       
fix_meson_version.patch::https://github.com/dgibson/dtc/commit/64a907f08b9bedd89833c1eee674148cff2343c6.patch
+       fix_meson_version2.patch::https://github.com/dgibson/dtc/pull/95.patch
+        pyscm.patch)
+sha256sums=('29edce3d302a15563d8663198bbc398c5a0554765c83830d0d4c0409d21a16c4'
+            '4538d60e5837cc1b7ead839eab2062a8677cf1ee7582fed76d3c4f043b3c0765'
+            '31ba6e7191cdb88a12f3ffa3016006cdc820c7588a54214e34326a67b68bd984'
+            '1c6f13e57e4b635a21dbb6b515e556bb9d28564b6f119edd852e41c019410bb6'
+            '3198c9e41cbebb0bcd9caa5de0940ccaf02b3b3bcc00fbc19bfdf3cdb8a075bb')
+
+prepare() {
+  cd dtc-$pkgver
+  patch -Np1 < ../fix_test.patch
+  patch -Np1 < ../fix_meson_version.patch
+  patch -Np1 < ../fix_meson_version2.patch
+  patch -Np1 < ../pyscm.patch
+  sed -i "s/@VERSION@/$pkgver/" setup.py
+}
+
+build() {
+  arch-meson dtc-$pkgver build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}

Deleted: pyscm.patch
===================================================================
--- pyscm.patch 2023-05-03 18:20:50 UTC (rev 1458430)
+++ pyscm.patch 2023-05-03 18:21:05 UTC (rev 1458431)
@@ -1,18 +0,0 @@
-diff --git a/setup.py b/setup.py
-index e82a832..da01efd 100755
---- a/setup.py
-+++ b/setup.py
-@@ -49,11 +49,8 @@ class build_py(_build_py):
- 
- setup(
-     name='libfdt',
--    use_scm_version={
--        "root": srcdir,
--    },
-     cmdclass = {'build_py' : build_py},
--    setup_requires = ['setuptools_scm'],
-+    version="@VERSION@",
-     author='Simon Glass',
-     author_email='[email protected]',
-     description='Python binding for libfdt',
-

Copied: dtc/repos/community-x86_64/pyscm.patch (from rev 1458430, 
dtc/trunk/pyscm.patch)
===================================================================
--- pyscm.patch                         (rev 0)
+++ pyscm.patch 2023-05-03 18:21:05 UTC (rev 1458431)
@@ -0,0 +1,18 @@
+diff --git a/setup.py b/setup.py
+index e82a832..da01efd 100755
+--- a/setup.py
++++ b/setup.py
+@@ -49,11 +49,8 @@ class build_py(_build_py):
+ 
+ setup(
+     name='libfdt',
+-    use_scm_version={
+-        "root": srcdir,
+-    },
+     cmdclass = {'build_py' : build_py},
+-    setup_requires = ['setuptools_scm'],
++    version="@VERSION@",
+     author='Simon Glass',
+     author_email='[email protected]',
+     description='Python binding for libfdt',
+

Reply via email to