pbrobinson pushed to kernel (f29). "Further AllWinner A64 fixes"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 23:23:11 UTC
From 85a5f1d7e83d8c871d4fcce6da92db33019d6e8e Mon Sep 17 00:00:00 2001
From: Peter Robinson <pbrobinson(a)gmail.com>
Date: Sep 30 2018 23:23:01 +0000
Subject: Further AllWinner A64 fixes
---
diff --git a/arm64-allwinner-fixes.patch b/arm64-allwinner-fixes.patch
index ad27d54..b37e348 100644
--- a/arm64-allwinner-fixes.patch
+++ b/arm64-allwinner-fixes.patch
@@ -1,3 +1,325 @@
+From 5828729bebbb69d0743488e742bed8a9727b0b71 Mon Sep 17 00:00:00 2001
+From: Icenowy Zheng <icenowy(a)aosc.io>
+Date: Wed, 11 Apr 2018 22:16:40 +0800
+Subject: soc: sunxi: export a regmap for EMAC clock reg on A64
+
+The A64 SRAM controller memory zone has a EMAC clock register, which is
+needed by the Ethernet MAC driver (dwmac-sun8i).
+
+Export a regmap for this register on A64.
+
+Signed-off-by: Icenowy Zheng <icenowy(a)aosc.io>
+[wens(a)csie.org: export whole address range with only EMAC register
+ accessible and drop regmap name]
+Acked-by: Maxime Ripard <maxime.ripard(a)bootlin.com>
+Signed-off-by: Chen-Yu Tsai <wens(a)csie.org>
+---
+ drivers/soc/sunxi/sunxi_sram.c | 57 ++++++++++++++++++++++++++++++++++++++++--
+ 1 file changed, 55 insertions(+), 2 deletions(-)
+
+diff --git a/drivers/soc/sunxi/sunxi_sram.c b/drivers/soc/sunxi/sunxi_sram.c
+index 882be5ed7e84..eec7fc6e9f66 100644
+--- a/drivers/soc/sunxi/sunxi_sram.c
++++ b/drivers/soc/sunxi/sunxi_sram.c
+@@ -17,6 +17,7 @@
+ #include <linux/of_address.h>
+ #include <linux/of_device.h>
+ #include <linux/platform_device.h>
++#include <linux/regmap.h>
+
+ #include <linux/soc/sunxi/sunxi_sram.h>
+
+@@ -281,13 +282,51 @@ int sunxi_sram_release(struct device *dev)
+ }
+ EXPORT_SYMBOL(sunxi_sram_release);
+
++struct sunxi_sramc_variant {
++ bool has_emac_clock;
++};
++
++static const struct sunxi_sramc_variant sun4i_a10_sramc_variant = {
++ /* Nothing special */
++};
++
++static const struct sunxi_sramc_variant sun50i_a64_sramc_variant = {
++ .has_emac_clock = true,
++};
++
++#define SUNXI_SRAM_EMAC_CLOCK_REG 0x30
++static bool sunxi_sram_regmap_accessible_reg(struct device *dev,
++ unsigned int reg)
++{
++ if (reg == SUNXI_SRAM_EMAC_CLOCK_REG)
++ return true;
++ return false;
++}
++
++static struct regmap_config sunxi_sram_emac_clock_regmap = {
++ .reg_bits = 32,
++ .val_bits = 32,
++ .reg_stride = 4,
++ /* last defined register */
++ .max_register = SUNXI_SRAM_EMAC_CLOCK_REG,
++ /* other devices have no business accessing other registers */
++ .readable_reg = sunxi_sram_regmap_accessible_reg,
++ .writeable_reg = sunxi_sram_regmap_accessible_reg,
++};
++
+ static int sunxi_sram_probe(struct platform_device *pdev)
+ {
+ struct resource *res;
+ struct dentry *d;
++ struct regmap *emac_clock;
++ const struct sunxi_sramc_variant *variant;
+
+ sram_dev = &pdev->dev;
+
++ variant = of_device_get_match_data(&pdev->dev);
++ if (!variant)
++ return -EINVAL;
++
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ base = devm_ioremap_resource(&pdev->dev, res);
+ if (IS_ERR(base))
+@@ -300,12 +339,26 @@ static int sunxi_sram_probe(struct platform_device *pdev)
+ if (!d)
+ return -ENOMEM;
+
++ if (variant->has_emac_clock) {
++ emac_clock = devm_regmap_init_mmio(&pdev->dev, base,
++ &sunxi_sram_emac_clock_regmap);
++
++ if (IS_ERR(emac_clock))
++ return PTR_ERR(emac_clock);
++ }
++
+ return 0;
+ }
+
+ static const struct of_device_id sunxi_sram_dt_match[] = {
+- { .compatible = "allwinner,sun4i-a10-sram-controller" },
+- { .compatible = "allwinner,sun50i-a64-sram-controller" },
++ {
++ .compatible = "allwinner,sun4i-a10-sram-controller",
++ .data = &sun4i_a10_sramc_variant,
++ },
++ {
++ .compatible = "allwinner,sun50i-a64-sram-controller",
++ .data = &sun50i_a64_sramc_variant,
++ },
+ { },
+ };
+ MODULE_DEVICE_TABLE(of, sunxi_sram_dt_match);
+--
+cgit 1.2-0.3.lf.el7
+From ede18ae31202256824b47cfbebc8c0dc219354ef Mon Sep 17 00:00:00 2001
+From: Chen-Yu Tsai <wens(a)csie.org>
+Date: Tue, 22 May 2018 01:02:41 +0800
+Subject: soc: sunxi: sram: Add updated compatible string for A64 system
+ control
+
+The SRAM mapping controls on Allwinner SoCs is located in a block called
+"System Controls". This block also has registers for identifying the SoC,
+reading the state of an external boot-related pin, and on some newer SoCs,
+glue layer controls for the EMAC Ethernet controller.
+
+The A64 variant compatible is renamed to "allwinner,a64-system-control"
+to reflect this. The old A64 compatible is deprecated. So far we haven't
+seen any actual use of it.
+
+Acked-by: Maxime Ripard <maxime.ripard(a)bootlin.com>
+Signed-off-by: Chen-Yu Tsai <wens(a)csie.org>
+---
+ drivers/soc/sunxi/sunxi_sram.c | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/drivers/soc/sunxi/sunxi_sram.c b/drivers/soc/sunxi/sunxi_sram.c
+index eec7fc6e9f66..7fec1b160dbb 100644
+--- a/drivers/soc/sunxi/sunxi_sram.c
++++ b/drivers/soc/sunxi/sunxi_sram.c
+@@ -359,6 +359,10 @@ static const struct of_device_id sunxi_sram_dt_match[] = {
+ .compatible = "allwinner,sun50i-a64-sram-controller",
+ .data = &sun50i_a64_sramc_variant,
+ },
++ {
++ .compatible = "allwinner,sun50i-a64-system-control",
++ .data = &sun50i_a64_sramc_variant,
++ },
+ { },
+ };
+ MODULE_DEVICE_TABLE(of, sunxi_sram_dt_match);
+--
+cgit 1.2-0.3.lf.el7
+From acc26f59f835142a48f495caf80b86592c4af1f5 Mon Sep 17 00:00:00 2001
+From: Paul Kocialkowski <paul.kocialkowski(a)bootlin.com>
+Date: Tue, 10 Jul 2018 10:00:58 +0200
+Subject: soc: sunxi: sram: Add dt match for the A10 system-control compatible
+
+This binds the new A10 system-control compatible to the associated
+driver, with the same driver data as the previous compatible.
+
+Reviewed-by: Chen-Yu Tsai <wens(a)csie.org>
+Signed-off-by: Paul Kocialkowski <paul.kocialkowski(a)bootlin.com>
+Signed-off-by: Maxime Ripard <maxime.ripard(a)bootlin.com>
+---
+ drivers/soc/sunxi/sunxi_sram.c | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/drivers/soc/sunxi/sunxi_sram.c b/drivers/soc/sunxi/sunxi_sram.c
+index 7fec1b160dbb..236f34307c0f 100644
+--- a/drivers/soc/sunxi/sunxi_sram.c
++++ b/drivers/soc/sunxi/sunxi_sram.c
+@@ -355,6 +355,10 @@ static const struct of_device_id sunxi_sram_dt_match[] = {
+ .compatible = "allwinner,sun4i-a10-sram-controller",
+ .data = &sun4i_a10_sramc_variant,
+ },
++ {
++ .compatible = "allwinner,sun4i-a10-system-control",
++ .data = &sun4i_a10_sramc_variant,
++ },
+ {
+ .compatible = "allwinner,sun50i-a64-sram-controller",
+ .data = &sun50i_a64_sramc_variant,
+--
+cgit 1.2-0.3.lf.el7
+From 5fdec16b69da273d5654c2c3be01246a59e1bcba Mon Sep 17 00:00:00 2001
+From: Maxime Ripard <maxime.ripard(a)bootlin.com>
+Date: Tue, 10 Jul 2018 10:00:59 +0200
+Subject: drivers: soc: sunxi: Add support for the C1 SRAM region
+
+This introduces support for the SRAM C1 section, that is controlled by
+the system controller. This SRAM area can be muxed either to the CPU
+or the Video Engine, that needs this area to store various tables (e.g.
+the Huffman VLD decoding tables).
+
+This only supports devices with the same layout as the A10 (which also
+includes the A13, A20, A33 and other SoCs).
+
+Reviewed-by: Chen-Yu Tsai <wens(a)csie.org>
+Signed-off-by: Maxime Ripard <maxime.ripard(a)bootlin.com>
+Signed-off-by: Paul Kocialkowski <paul.kocialkowski(a)bootlin.com>
+Signed-off-by: Maxime Ripard <maxime.ripard(a)bootlin.com>
+---
+ drivers/soc/sunxi/sunxi_sram.c | 10 ++++++++++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/drivers/soc/sunxi/sunxi_sram.c b/drivers/soc/sunxi/sunxi_sram.c
+index 236f34307c0f..b19fa2cc67c2 100644
+--- a/drivers/soc/sunxi/sunxi_sram.c
++++ b/drivers/soc/sunxi/sunxi_sram.c
+@@ -64,6 +64,12 @@ static struct sunxi_sram_desc sun4i_a10_sram_a3_a4 = {
+ SUNXI_SRAM_MAP(1, 1, "emac")),
+ };
+
++static struct sunxi_sram_desc sun4i_a10_sram_c1 = {
++ .data = SUNXI_SRAM_DATA("C1", 0x0, 0x0, 31,
++ SUNXI_SRAM_MAP(0, 0, "cpu"),
++ SUNXI_SRAM_MAP(0x7fffffff, 1, "ve")),
++};
++
+ static struct sunxi_sram_desc sun4i_a10_sram_d = {
+ .data = SUNXI_SRAM_DATA("D", 0x4, 0x0, 1,
+ SUNXI_SRAM_MAP(0, 0, "cpu"),
+@@ -81,6 +87,10 @@ static const struct of_device_id sunxi_sram_dt_ids[] = {
+ .compatible = "allwinner,sun4i-a10-sram-a3-a4",
+ .data = &sun4i_a10_sram_a3_a4.data,
+ },
++ {
++ .compatible = "allwinner,sun4i-a10-sram-c1",
++ .data = &sun4i_a10_sram_c1.data,
++ },
+ {
+ .compatible = "allwinner,sun4i-a10-sram-d",
+ .data = &sun4i_a10_sram_d.data,
+--
+cgit 1.2-0.3.lf.el7
+From 7377330a1ed2e9bb5a97758bdadcdb37e2201b2a Mon Sep 17 00:00:00 2001
+From: Maxime Ripard <maxime.ripard(a)bootlin.com>
+Date: Wed, 11 Jul 2018 11:25:07 +0200
+Subject: soc: sunxi: Add the A13, A23 and H3 system control compatibles
+
+The A13, A23 and H3 have variations of the system controls, in part due to
+the SRAM that are available (and can be mapped) in the SoC.
+
+In order to make it future proof, let's add compatibles for these SoCs in
+the driver.
+
+Signed-off-by: Maxime Ripard <maxime.ripard(a)bootlin.com>
+---
+ drivers/soc/sunxi/sunxi_sram.c | 12 ++++++++++++
+ 1 file changed, 12 insertions(+)
+
+diff --git a/drivers/soc/sunxi/sunxi_sram.c b/drivers/soc/sunxi/sunxi_sram.c
+index b19fa2cc67c2..b4b0f3480bd3 100644
+--- a/drivers/soc/sunxi/sunxi_sram.c
++++ b/drivers/soc/sunxi/sunxi_sram.c
+@@ -369,6 +369,18 @@ static const struct of_device_id sunxi_sram_dt_match[] = {
+ .compatible = "allwinner,sun4i-a10-system-control",
+ .data = &sun4i_a10_sramc_variant,
+ },
++ {
++ .compatible = "allwinner,sun5i-a13-system-control",
++ .data = &sun4i_a10_sramc_variant,
++ },
++ {
++ .compatible = "allwinner,sun8i-a23-system-control",
++ .data = &sun4i_a10_sramc_variant,
++ },
++ {
++ .compatible = "allwinner,sun8i-h3-system-control",
++ .data = &sun4i_a10_sramc_variant,
++ },
+ {
+ .compatible = "allwinner,sun50i-a64-sram-controller",
+ .data = &sun50i_a64_sramc_variant,
+--
+cgit 1.2-0.3.lf.el7
+From 0195156340d365540c7dfa239232065826904f59 Mon Sep 17 00:00:00 2001
+From: Icenowy Zheng <icenowy(a)aosc.io>
+Date: Fri, 22 Jun 2018 20:45:37 +0800
+Subject: clk: sunxi-ng: add A64 compatible string
+
+As claiming Allwinner A64 SRAM C is a prerequisite for all sub-blocks of
+the A64 DE2, not only the CCU sub-block, a bus driver is then written for
+enabling the access to the whole DE2 part by claiming the SRAM.
+
+In this situation, the A64 compatible string will be just added with no
+other requirments, as they're processed by the parent bus driver.
+
+Signed-off-by: Icenowy Zheng <icenowy(a)aosc.io>
+Signed-off-by: Maxime Ripard <maxime.ripard(a)bootlin.com>
+---
+ drivers/clk/sunxi-ng/ccu-sun8i-de2.c | 11 ++++-------
+ 1 file changed, 4 insertions(+), 7 deletions(-)
+
+diff --git a/drivers/clk/sunxi-ng/ccu-sun8i-de2.c b/drivers/clk/sunxi-ng/ccu-sun8i-de2.c
+index 468d1abaf0ee..bae5ee67a797 100644
+--- a/drivers/clk/sunxi-ng/ccu-sun8i-de2.c
++++ b/drivers/clk/sunxi-ng/ccu-sun8i-de2.c
+@@ -288,17 +288,14 @@ static const struct of_device_id sunxi_de2_clk_ids[] = {
+ .compatible = "allwinner,sun8i-v3s-de2-clk",
+ .data = &sun8i_v3s_de2_clk_desc,
+ },
++ {
++ .compatible = "allwinner,sun50i-a64-de2-clk",
++ .data = &sun50i_a64_de2_clk_desc,
++ },
+ {
+ .compatible = "allwinner,sun50i-h5-de2-clk",
+ .data = &sun50i_a64_de2_clk_desc,
+ },
+- /*
+- * The Allwinner A64 SoC needs some bit to be poke in syscon to make
+- * DE2 really working.
+- * So there's currently no A64 compatible here.
+- * H5 shares the same reset line with A64, so here H5 is using the
+- * clock description of A64.
+- */
+ { }
+ };
+
+--
+cgit 1.2-0.3.lf.el7
From 2c740e6ab4b66e5bb1cd3c75f00f4ca7e5765037 Mon Sep 17 00:00:00 2001
From: Emmanuel Vadot <manu(a)freebsd.org>
Date: Mon, 21 May 2018 13:54:13 +0200
diff --git a/kernel.spec b/kernel.spec
index f8f3e54..50e8bd0 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -1924,6 +1924,9 @@ fi
#
#
%changelog
+* Sun Sep 30 2018 Peter Robinson <pbrobinson(a)fedoraproject.org>
+- Fixes for AllWinner A64 NICs
+
* Sun Sep 30 2018 Laura Abbott <labbott(a)redhat.com> - 4.18.11-300
- Linux v4.18.11
https://src.fedoraproject.org/rpms/kernel/c/85a5f1d7e83d8c871d4fcce6da92d...
5 years, 2 months
mooninite pushed to wine (f27). "Update to 3.17"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 22:32:33 UTC
From 7c047594d3abcda34c64451f6d25794b318418f2 Mon Sep 17 00:00:00 2001
From: Michael Cronenworth <mike(a)cchtml.com>
Date: Sep 30 2018 21:50:20 +0000
Subject: Update to 3.17
---
diff --git a/.gitignore b/.gitignore
index 7adbe41..d538ae5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
-/wine-3.16.tar.xz
-/wine-3.16.tar.xz.sign
-/wine-staging-3.16.tar.gz
+/wine-3.17.tar.xz
+/wine-3.17.tar.xz.sign
+/wine-staging-3.17.tar.gz
diff --git a/sources b/sources
index dc21ed7..4e56580 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (wine-3.16.tar.xz) = f0c566f70ede01e5896b7611dfe58cd6748b92d55d22a71ccc9add575e9aa5062bbbffa14f0a30ee3df5cf79e9ea4dcf02a7d62db64b94d5b56927e256a978c2
-SHA512 (wine-3.16.tar.xz.sign) = 4ff39497e48062d0924bc1094b06fddae550e9caae7f2b29db68bf919e5ac414226dbe3f717e73bb4c712a33fdf8ff1a4b76fdef4f569fbcf74ba790f5f7b973
-SHA512 (wine-staging-3.16.tar.gz) = 25f06b06a0880b3926d9d3dfb35fd1aeb1f168426917dee32dcf906970474862021416f4e9db1917d8320962bc0bc17d1f3dad21b634a60b8e0da87a4b54067e
+SHA512 (wine-3.17.tar.xz) = ea50c9e09d3fd7f41ff96a1219d43896946ac79c8cdef31ae56e10664fc3b0b6dd1f9d8cd72db874d08c431eba9c8033ea72182499666a5aa62c1056876b0a66
+SHA512 (wine-3.17.tar.xz.sign) = 039bc41089f1af96933f99073d4a6e6eade790b14199058cdb872f0053b030502cf3ef2a7244c0027c8ae34f8f05fbdacc6889be9b25afa6d1a01a2acd10d1eb
+SHA512 (wine-staging-3.17.tar.gz) = 2fe9e8f801b53fa9b71fd908f5403956251522851383bfdde6828c6a8545d6f50ac8c41df54d89c2f92d74dc3bb563cd6a7d8ad394002c981197b71adc1a5e13
diff --git a/wine.spec b/wine.spec
index c08fe77..abd4e6e 100644
--- a/wine.spec
+++ b/wine.spec
@@ -20,7 +20,7 @@
%endif
Name: wine
-Version: 3.16
+Version: 3.17
Release: 1%{?dist}
Summary: A compatibility layer for windows applications
@@ -2218,6 +2218,9 @@ fi
%endif
%changelog
+* Sun Sep 30 2018 Michael Cronenworth <mike(a)cchtml.com> 3.17-1
+- version update
+
* Mon Sep 17 2018 Michael Cronenworth <mike(a)cchtml.com> 3.16-1
- version update
https://src.fedoraproject.org/rpms/wine/c/7c047594d3abcda34c64451f6d25794...
5 years, 2 months
mooninite pushed to wine (f28). "Update to 3.17"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 22:32:17 UTC
From 7c047594d3abcda34c64451f6d25794b318418f2 Mon Sep 17 00:00:00 2001
From: Michael Cronenworth <mike(a)cchtml.com>
Date: Sep 30 2018 21:50:20 +0000
Subject: Update to 3.17
---
diff --git a/.gitignore b/.gitignore
index 7adbe41..d538ae5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
-/wine-3.16.tar.xz
-/wine-3.16.tar.xz.sign
-/wine-staging-3.16.tar.gz
+/wine-3.17.tar.xz
+/wine-3.17.tar.xz.sign
+/wine-staging-3.17.tar.gz
diff --git a/sources b/sources
index dc21ed7..4e56580 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (wine-3.16.tar.xz) = f0c566f70ede01e5896b7611dfe58cd6748b92d55d22a71ccc9add575e9aa5062bbbffa14f0a30ee3df5cf79e9ea4dcf02a7d62db64b94d5b56927e256a978c2
-SHA512 (wine-3.16.tar.xz.sign) = 4ff39497e48062d0924bc1094b06fddae550e9caae7f2b29db68bf919e5ac414226dbe3f717e73bb4c712a33fdf8ff1a4b76fdef4f569fbcf74ba790f5f7b973
-SHA512 (wine-staging-3.16.tar.gz) = 25f06b06a0880b3926d9d3dfb35fd1aeb1f168426917dee32dcf906970474862021416f4e9db1917d8320962bc0bc17d1f3dad21b634a60b8e0da87a4b54067e
+SHA512 (wine-3.17.tar.xz) = ea50c9e09d3fd7f41ff96a1219d43896946ac79c8cdef31ae56e10664fc3b0b6dd1f9d8cd72db874d08c431eba9c8033ea72182499666a5aa62c1056876b0a66
+SHA512 (wine-3.17.tar.xz.sign) = 039bc41089f1af96933f99073d4a6e6eade790b14199058cdb872f0053b030502cf3ef2a7244c0027c8ae34f8f05fbdacc6889be9b25afa6d1a01a2acd10d1eb
+SHA512 (wine-staging-3.17.tar.gz) = 2fe9e8f801b53fa9b71fd908f5403956251522851383bfdde6828c6a8545d6f50ac8c41df54d89c2f92d74dc3bb563cd6a7d8ad394002c981197b71adc1a5e13
diff --git a/wine.spec b/wine.spec
index c08fe77..abd4e6e 100644
--- a/wine.spec
+++ b/wine.spec
@@ -20,7 +20,7 @@
%endif
Name: wine
-Version: 3.16
+Version: 3.17
Release: 1%{?dist}
Summary: A compatibility layer for windows applications
@@ -2218,6 +2218,9 @@ fi
%endif
%changelog
+* Sun Sep 30 2018 Michael Cronenworth <mike(a)cchtml.com> 3.17-1
+- version update
+
* Mon Sep 17 2018 Michael Cronenworth <mike(a)cchtml.com> 3.16-1
- version update
https://src.fedoraproject.org/rpms/wine/c/7c047594d3abcda34c64451f6d25794...
5 years, 2 months
mooninite pushed to wine (f29). "Update to 3.17"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 22:31:54 UTC
From 7c047594d3abcda34c64451f6d25794b318418f2 Mon Sep 17 00:00:00 2001
From: Michael Cronenworth <mike(a)cchtml.com>
Date: Sep 30 2018 21:50:20 +0000
Subject: Update to 3.17
---
diff --git a/.gitignore b/.gitignore
index 7adbe41..d538ae5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
-/wine-3.16.tar.xz
-/wine-3.16.tar.xz.sign
-/wine-staging-3.16.tar.gz
+/wine-3.17.tar.xz
+/wine-3.17.tar.xz.sign
+/wine-staging-3.17.tar.gz
diff --git a/sources b/sources
index dc21ed7..4e56580 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (wine-3.16.tar.xz) = f0c566f70ede01e5896b7611dfe58cd6748b92d55d22a71ccc9add575e9aa5062bbbffa14f0a30ee3df5cf79e9ea4dcf02a7d62db64b94d5b56927e256a978c2
-SHA512 (wine-3.16.tar.xz.sign) = 4ff39497e48062d0924bc1094b06fddae550e9caae7f2b29db68bf919e5ac414226dbe3f717e73bb4c712a33fdf8ff1a4b76fdef4f569fbcf74ba790f5f7b973
-SHA512 (wine-staging-3.16.tar.gz) = 25f06b06a0880b3926d9d3dfb35fd1aeb1f168426917dee32dcf906970474862021416f4e9db1917d8320962bc0bc17d1f3dad21b634a60b8e0da87a4b54067e
+SHA512 (wine-3.17.tar.xz) = ea50c9e09d3fd7f41ff96a1219d43896946ac79c8cdef31ae56e10664fc3b0b6dd1f9d8cd72db874d08c431eba9c8033ea72182499666a5aa62c1056876b0a66
+SHA512 (wine-3.17.tar.xz.sign) = 039bc41089f1af96933f99073d4a6e6eade790b14199058cdb872f0053b030502cf3ef2a7244c0027c8ae34f8f05fbdacc6889be9b25afa6d1a01a2acd10d1eb
+SHA512 (wine-staging-3.17.tar.gz) = 2fe9e8f801b53fa9b71fd908f5403956251522851383bfdde6828c6a8545d6f50ac8c41df54d89c2f92d74dc3bb563cd6a7d8ad394002c981197b71adc1a5e13
diff --git a/wine.spec b/wine.spec
index c08fe77..abd4e6e 100644
--- a/wine.spec
+++ b/wine.spec
@@ -20,7 +20,7 @@
%endif
Name: wine
-Version: 3.16
+Version: 3.17
Release: 1%{?dist}
Summary: A compatibility layer for windows applications
@@ -2218,6 +2218,9 @@ fi
%endif
%changelog
+* Sun Sep 30 2018 Michael Cronenworth <mike(a)cchtml.com> 3.17-1
+- version update
+
* Mon Sep 17 2018 Michael Cronenworth <mike(a)cchtml.com> 3.16-1
- version update
https://src.fedoraproject.org/rpms/wine/c/7c047594d3abcda34c64451f6d25794...
5 years, 2 months
rebus pushed to python-olefile (epel7). "Update to 0.46"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 22:17:19 UTC
From 6880059c8a4c0cad9e6fc8613fad4074add22741 Mon Sep 17 00:00:00 2001
From: Sandro Mani <manisandro(a)gmail.com>
Date: Sep 11 2018 07:56:20 +0000
Subject: Update to 0.46
---
diff --git a/.gitignore b/.gitignore
index 659c8cc..11d512b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/olefile-bc9d196.tar.gz
/olefile-0.44.zip
/olefile-0.45.1.zip
+/olefile-0.46.zip
diff --git a/python-olefile.spec b/python-olefile.spec
index 6453afd..c24c1e1 100644
--- a/python-olefile.spec
+++ b/python-olefile.spec
@@ -8,8 +8,8 @@ Outlook messages, StickyNotes, several Microscopy file formats, McAfee\
antivirus quarantine files, etc.
Name: python-%{srcname}
-Version: 0.45.1
-Release: 3%{?dist}
+Version: 0.46
+Release: 1%{?dist}
Summary: Python package to parse, read and write Microsoft OLE2 files
License: BSD
@@ -98,6 +98,9 @@ make -C doc html BUILDDIR=_build_py3 SPHINXBUILD=sphinx-build-%python3_version
%changelog
+* Tue Sep 11 2018 Sandro Mani <manisandro(a)gmail.com> - 0.46-1
+- Update to 0.46
+
* Sat Jul 14 2018 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.45.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
diff --git a/sources b/sources
index 0651d50..8ce868b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (olefile-0.45.1.zip) = 31f7584553304b186aad88f1988dfa12ceb34a50d546a38181280a816cfcda8dc54ff502afb31a928d647e6106c9e4878bfac8cec31d24018fdbab65c7007e49
+SHA512 (olefile-0.46.zip) = 2a19c443c1e4519680027ff557b5f737e6d0e707c1932a759ea85105717f4f6393149e0eb04589fe2b2b7e0c474042cfe34801faad38517799483b711001b4ac
https://src.fedoraproject.org/rpms/python-olefile/c/6880059c8a4c0cad9e6fc...
5 years, 2 months
rebus pushed to python-olefile (epel7). "Rebuilt for Python 3.7"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 22:17:19 UTC
From 1165b14fd1b53efacb4ea14168a8332915f0f20e Mon Sep 17 00:00:00 2001
From: Miro Hrončok <miro(a)hroncok.cz>
Date: Jun 16 2018 07:51:40 +0000
Subject: Rebuilt for Python 3.7
---
diff --git a/python-olefile.spec b/python-olefile.spec
index e6a5944..a02368f 100644
--- a/python-olefile.spec
+++ b/python-olefile.spec
@@ -9,7 +9,7 @@ antivirus quarantine files, etc.
Name: python-%{srcname}
Version: 0.45.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Python package to parse, read and write Microsoft OLE2 files
License: BSD
@@ -98,6 +98,9 @@ make -C doc html BUILDDIR=_build_py3 SPHINXBUILD=sphinx-build-%python3_version
%changelog
+* Sat Jun 16 2018 Miro Hrončok <mhroncok(a)redhat.com> - 0.45.1-2
+- Rebuilt for Python 3.7
+
* Mon Feb 12 2018 Sandro Mani <manisandro(a)gmail.com> - 0.45.1-1
- Update to 0.45.1
https://src.fedoraproject.org/rpms/python-olefile/c/1165b14fd1b53efacb4ea...
5 years, 2 months
rebus pushed to python-olefile (f28). "Rebuilt for Python 3.7"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 22:16:33 UTC
From 1165b14fd1b53efacb4ea14168a8332915f0f20e Mon Sep 17 00:00:00 2001
From: Miro Hrončok <miro(a)hroncok.cz>
Date: Jun 16 2018 07:51:40 +0000
Subject: Rebuilt for Python 3.7
---
diff --git a/python-olefile.spec b/python-olefile.spec
index e6a5944..a02368f 100644
--- a/python-olefile.spec
+++ b/python-olefile.spec
@@ -9,7 +9,7 @@ antivirus quarantine files, etc.
Name: python-%{srcname}
Version: 0.45.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Python package to parse, read and write Microsoft OLE2 files
License: BSD
@@ -98,6 +98,9 @@ make -C doc html BUILDDIR=_build_py3 SPHINXBUILD=sphinx-build-%python3_version
%changelog
+* Sat Jun 16 2018 Miro Hrončok <mhroncok(a)redhat.com> - 0.45.1-2
+- Rebuilt for Python 3.7
+
* Mon Feb 12 2018 Sandro Mani <manisandro(a)gmail.com> - 0.45.1-1
- Update to 0.45.1
https://src.fedoraproject.org/rpms/python-olefile/c/1165b14fd1b53efacb4ea...
5 years, 2 months
rebus pushed to python-olefile (f28). "Update to 0.46"
by notifications@fedoraproject.org
Notification time stamped 2018-09-30 22:16:33 UTC
From 6880059c8a4c0cad9e6fc8613fad4074add22741 Mon Sep 17 00:00:00 2001
From: Sandro Mani <manisandro(a)gmail.com>
Date: Sep 11 2018 07:56:20 +0000
Subject: Update to 0.46
---
diff --git a/.gitignore b/.gitignore
index 659c8cc..11d512b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/olefile-bc9d196.tar.gz
/olefile-0.44.zip
/olefile-0.45.1.zip
+/olefile-0.46.zip
diff --git a/python-olefile.spec b/python-olefile.spec
index 6453afd..c24c1e1 100644
--- a/python-olefile.spec
+++ b/python-olefile.spec
@@ -8,8 +8,8 @@ Outlook messages, StickyNotes, several Microscopy file formats, McAfee\
antivirus quarantine files, etc.
Name: python-%{srcname}
-Version: 0.45.1
-Release: 3%{?dist}
+Version: 0.46
+Release: 1%{?dist}
Summary: Python package to parse, read and write Microsoft OLE2 files
License: BSD
@@ -98,6 +98,9 @@ make -C doc html BUILDDIR=_build_py3 SPHINXBUILD=sphinx-build-%python3_version
%changelog
+* Tue Sep 11 2018 Sandro Mani <manisandro(a)gmail.com> - 0.46-1
+- Update to 0.46
+
* Sat Jul 14 2018 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.45.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
diff --git a/sources b/sources
index 0651d50..8ce868b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (olefile-0.45.1.zip) = 31f7584553304b186aad88f1988dfa12ceb34a50d546a38181280a816cfcda8dc54ff502afb31a928d647e6106c9e4878bfac8cec31d24018fdbab65c7007e49
+SHA512 (olefile-0.46.zip) = 2a19c443c1e4519680027ff557b5f737e6d0e707c1932a759ea85105717f4f6393149e0eb04589fe2b2b7e0c474042cfe34801faad38517799483b711001b4ac
https://src.fedoraproject.org/rpms/python-olefile/c/6880059c8a4c0cad9e6fc...
5 years, 2 months