thm pushed to waf (epel9). "Update to 2.0.23."
by notifications@fedoraproject.org
Notification time stamped 2022-02-22 08:33:44 UTC
From 9d94005453be6ed0a78c29e806f89645c76c0232 Mon Sep 17 00:00:00 2001
From: Thomas Moschny <thm(a)fedoraproject.org>
Date: Dec 22 2021 13:36:19 +0000
Subject: Update to 2.0.23.
---
diff --git a/repack.sh b/repack.sh
index 37da33e..0ebbfcd 100755
--- a/repack.sh
+++ b/repack.sh
@@ -1,20 +1,19 @@
#! /bin/bash
-version=2.0.22
+set -euxo pipefail
+
+version=2.0.23
prerel=
src=waf-${version}${prerel}.tar.bz2
dst=${src%.tar.bz2}.stripped.tar.bz2
-rm -f ${dst} ${dst%.bz2}
-cp -av ${src} ${dst}
-
-bzip2 -d ${dst}
-
-tar --delete --file=${dst%.bz2} \
- waf-${version}/docs/sphinx/_images/waf-64x64.png \
- waf-${version}/docs/slides/presentation/gfx/waflogo.svg
-
-touch -m -r ${src} ${dst%.bz2}
+readarray -t files <<-EOF
+ waf-${version}/docs/sphinx/_images/waf-64x64.png
+ waf-${version}/docs/slides/presentation/gfx/waflogo.svg
+EOF
-bzip2 ${dst%.bz2}
+# tar's "--delete option has been reported to work properly when tar
+# acts as a filter from stdin to stdout."
+bzip2 -cd "${src}" | tar --delete "${files[@]}" | bzip2 -c > "${dst}"
+touch -m -r "${src}" "${dst}"
diff --git a/sources b/sources
index c4be169..6122cf9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (waf-2.0.22.stripped.tar.bz2) = 360bb6509e515ecf5efeb73d10c909abd518223d6d2124f395ffe1de77096d237891a44f92058e86deaa5f84f0aa322e72c1fbd5ed33f74a3d71e3acdc7bbfa7
+SHA512 (waf-2.0.23.stripped.tar.bz2) = 1d0e34db8e34025ae8eb7480219fe94d523657dcdf547588768a8c0dc2ee486284effec250e0a54619fd21914f24b769a29521500aaf5e5f74b29a4b0dc1c154
diff --git a/waf.spec b/waf.spec
index 1b1b9cd..07a4b1f 100644
--- a/waf.spec
+++ b/waf.spec
@@ -1,6 +1,6 @@
Name: waf
-Version: 2.0.22
-Release: 3%{?dist}
+Version: 2.0.23
+Release: 1%{?dist}
Summary: A Python-based build system
# The entire source code is BSD apart from pproc.py (taken from Python 2.5)
License: BSD and Python
@@ -137,6 +137,9 @@ rm -f docs/sphinx/build/html/.buildinfo
%changelog
+* Wed Dec 22 2021 Thomas Moschny <thomas.moschny(a)gmx.de> - 2.0.23-1
+- Update to 2.0.23.
+
* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 2.0.22-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
https://src.fedoraproject.org/rpms/waf/c/9d94005453be6ed0a78c29e806f89645...
1 year, 3 months
thm pushed to waf (epel9). "Rebuilt for Python 3.10"
by notifications@fedoraproject.org
Notification time stamped 2022-02-22 08:33:44 UTC
From 8626175a5dbaa9dcb89e535c4d931956c3347a68 Mon Sep 17 00:00:00 2001
From: Python Maint <python-maint(a)redhat.com>
Date: Jun 04 2021 11:48:13 +0000
Subject: Rebuilt for Python 3.10
---
diff --git a/waf.spec b/waf.spec
index d7e3086..bb0d36c 100644
--- a/waf.spec
+++ b/waf.spec
@@ -1,6 +1,6 @@
Name: waf
Version: 2.0.22
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A Python-based build system
# The entire source code is BSD apart from pproc.py (taken from Python 2.5)
License: BSD and Python
@@ -137,6 +137,9 @@ rm -f docs/sphinx/build/html/.buildinfo
%changelog
+* Fri Jun 04 2021 Python Maint <python-maint(a)redhat.com> - 2.0.22-2
+- Rebuilt for Python 3.10
+
* Tue Feb 2 2021 Thomas Moschny <thomas.moschny(a)gmx.de> - 2.0.22-1
- Update to 2.0.22.
https://src.fedoraproject.org/rpms/waf/c/8626175a5dbaa9dcb89e535c4d931956...
1 year, 3 months
thm pushed to waf (epel9). "Update to 2.0.22."
by notifications@fedoraproject.org
Notification time stamped 2022-02-22 08:33:44 UTC
From fc0a769145dbd3c5e6b18ec58bd95a1cceb4a0a7 Mon Sep 17 00:00:00 2001
From: Thomas Moschny <thm(a)fedoraproject.org>
Date: Feb 02 2021 13:29:17 +0000
Subject: Update to 2.0.22.
---
diff --git a/repack.sh b/repack.sh
index 632b126..37da33e 100755
--- a/repack.sh
+++ b/repack.sh
@@ -1,6 +1,6 @@
#! /bin/bash
-version=2.0.21
+version=2.0.22
prerel=
src=waf-${version}${prerel}.tar.bz2
diff --git a/sources b/sources
index ef12096..c4be169 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (waf-2.0.21.stripped.tar.bz2) = 0a205061253e84a1b65a1250b2603d97c17ef160cba1476db0b6b95320035f8e31ecf4600e13855ee1bc1d864acc0ecfdb8808c4555e33d9a8ef90c96ab1f395
+SHA512 (waf-2.0.22.stripped.tar.bz2) = 360bb6509e515ecf5efeb73d10c909abd518223d6d2124f395ffe1de77096d237891a44f92058e86deaa5f84f0aa322e72c1fbd5ed33f74a3d71e3acdc7bbfa7
diff --git a/waf.spec b/waf.spec
index 0f694ef..d7e3086 100644
--- a/waf.spec
+++ b/waf.spec
@@ -1,6 +1,6 @@
Name: waf
-Version: 2.0.21
-Release: 2%{?dist}
+Version: 2.0.22
+Release: 1%{?dist}
Summary: A Python-based build system
# The entire source code is BSD apart from pproc.py (taken from Python 2.5)
License: BSD and Python
@@ -137,6 +137,9 @@ rm -f docs/sphinx/build/html/.buildinfo
%changelog
+* Tue Feb 2 2021 Thomas Moschny <thomas.moschny(a)gmx.de> - 2.0.22-1
+- Update to 2.0.22.
+
* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 2.0.21-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
https://src.fedoraproject.org/rpms/waf/c/fc0a769145dbd3c5e6b18ec58bd95a1c...
1 year, 3 months
thm pushed to waf (epel9). "Update to 2.0.21."
by notifications@fedoraproject.org
Notification time stamped 2022-02-22 08:33:44 UTC
From 9ba9eb54d806cb5b38d359ab929058c62b435c26 Mon Sep 17 00:00:00 2001
From: Thomas Moschny <thm(a)fedoraproject.org>
Date: Nov 16 2020 09:59:09 +0000
Subject: Update to 2.0.21.
---
diff --git a/repack.sh b/repack.sh
index 5f9a6bf..632b126 100755
--- a/repack.sh
+++ b/repack.sh
@@ -1,6 +1,6 @@
#! /bin/bash
-version=2.0.20
+version=2.0.21
prerel=
src=waf-${version}${prerel}.tar.bz2
diff --git a/sources b/sources
index e7e56db..ef12096 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (waf-2.0.20.stripped.tar.bz2) = 21f61dc7ce6cd96d818caea28d9add9afbd60396e1fb72cf79ec94b451b11bae0275e99c180f084973688ee19f525d59cddf567f600d55403c88ecfd63c42ca7
+SHA512 (waf-2.0.21.stripped.tar.bz2) = 0a205061253e84a1b65a1250b2603d97c17ef160cba1476db0b6b95320035f8e31ecf4600e13855ee1bc1d864acc0ecfdb8808c4555e33d9a8ef90c96ab1f395
diff --git a/waf.spec b/waf.spec
index fb77e54..47c48ca 100644
--- a/waf.spec
+++ b/waf.spec
@@ -1,6 +1,6 @@
Name: waf
-Version: 2.0.20
-Release: 3%{?dist}
+Version: 2.0.21
+Release: 1%{?dist}
Summary: A Python-based build system
# The entire source code is BSD apart from pproc.py (taken from Python 2.5)
License: BSD and Python
@@ -137,6 +137,9 @@ rm -f docs/sphinx/build/html/.buildinfo
%changelog
+* Mon Nov 16 2020 Thomas Moschny <thomas.moschny(a)gmx.de> - 2.0.21-1
+- Update to 2.0.21.
+
* Wed Jul 29 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 2.0.20-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
https://src.fedoraproject.org/rpms/waf/c/9ba9eb54d806cb5b38d359ab929058c6...
1 year, 3 months
thm pushed to waf (epel9). "Rebuilt for Python 3.9"
by notifications@fedoraproject.org
Notification time stamped 2022-02-22 08:33:44 UTC
From 4426cf3114dcb21edccb76b5afc15e5fde7948d5 Mon Sep 17 00:00:00 2001
From: Miro Hrončok <miro(a)hroncok.cz>
Date: May 25 2020 10:03:53 +0000
Subject: Rebuilt for Python 3.9
---
diff --git a/waf.spec b/waf.spec
index 7acd56b..d645621 100644
--- a/waf.spec
+++ b/waf.spec
@@ -1,6 +1,6 @@
Name: waf
Version: 2.0.20
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A Python-based build system
# The entire source code is BSD apart from pproc.py (taken from Python 2.5)
License: BSD and Python
@@ -137,6 +137,9 @@ rm -f docs/sphinx/build/html/.buildinfo
%changelog
+* Mon May 25 2020 Miro Hrončok <mhroncok(a)redhat.com> - 2.0.20-2
+- Rebuilt for Python 3.9
+
* Tue Apr 14 2020 Thomas Moschny <thomas.moschny(a)gmx.de> - 2.0.20-1
- Update to 2.0.20.
https://src.fedoraproject.org/rpms/waf/c/4426cf3114dcb21edccb76b5afc15e5f...
1 year, 3 months
thm pushed to waf (epel9). "Update to 2.0.20."
by notifications@fedoraproject.org
Notification time stamped 2022-02-22 08:33:44 UTC
From dbab9ecb38e445ece28916ef49e3d9b5721c5f7d Mon Sep 17 00:00:00 2001
From: Thomas Moschny <thm(a)fedoraproject.org>
Date: Apr 14 2020 10:14:58 +0000
Subject: Update to 2.0.20.
---
diff --git a/repack.sh b/repack.sh
index f5c67a6..5f9a6bf 100755
--- a/repack.sh
+++ b/repack.sh
@@ -1,6 +1,6 @@
#! /bin/bash
-version=2.0.19
+version=2.0.20
prerel=
src=waf-${version}${prerel}.tar.bz2
diff --git a/sources b/sources
index f5b4616..e7e56db 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (waf-2.0.19.stripped.tar.bz2) = 03fb06fb3d4002b583df2f55959154502ae1c14eb4ad0671bff5f48a5d3546f9c7f2d1e2cbd83448c9e9c1d2ecc30fb3c6d68479508f8b884193a96cc9bd2c9f
+SHA512 (waf-2.0.20.stripped.tar.bz2) = 21f61dc7ce6cd96d818caea28d9add9afbd60396e1fb72cf79ec94b451b11bae0275e99c180f084973688ee19f525d59cddf567f600d55403c88ecfd63c42ca7
diff --git a/waf.spec b/waf.spec
index 92f7e34..7acd56b 100644
--- a/waf.spec
+++ b/waf.spec
@@ -1,6 +1,6 @@
Name: waf
-Version: 2.0.19
-Release: 2%{?dist}
+Version: 2.0.20
+Release: 1%{?dist}
Summary: A Python-based build system
# The entire source code is BSD apart from pproc.py (taken from Python 2.5)
License: BSD and Python
@@ -137,6 +137,9 @@ rm -f docs/sphinx/build/html/.buildinfo
%changelog
+* Tue Apr 14 2020 Thomas Moschny <thomas.moschny(a)gmx.de> - 2.0.20-1
+- Update to 2.0.20.
+
* Fri Jan 31 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 2.0.19-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
https://src.fedoraproject.org/rpms/waf/c/dbab9ecb38e445ece28916ef49e3d9b5...
1 year, 3 months