From 125c5d4c9ccc4079b8245e6a1111634f8989c119 Mon Sep 17 00:00:00 2001 From: =?utf8?q?IOhannes=20m=20zm=C3=B6lnig=20=28Debian/GNU=29?= Date: Wed, 11 Jan 2023 15:39:11 +0100 Subject: [PATCH] Drop patches applied upstream --- debian/patches/reproducible_docs.patch | 30 -------------------------- debian/patches/series | 1 - 2 files changed, 31 deletions(-) delete mode 100644 debian/patches/reproducible_docs.patch diff --git a/debian/patches/reproducible_docs.patch b/debian/patches/reproducible_docs.patch deleted file mode 100644 index e7aebc75..00000000 --- a/debian/patches/reproducible_docs.patch +++ /dev/null @@ -1,30 +0,0 @@ -Description: make Doxygen documentation reproducible - Python's os.listdir() returns the entries in an undefined order, - which in turn makes the generated documentation unreproducible. - this patch just sorts the entries returned by os.listdir() -Author: IOhannes m zmölnig -Origin: Debian -Bug: https://github.com/juce-framework/JUCE/issues/1148 -Last-Update: 2022-11-10 ---- -This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ---- juce.orig/docs/doxygen/process_source_files.py -+++ juce/docs/doxygen/process_source_files.py -@@ -87,7 +87,7 @@ - juce_modules = args.subdirs.split(",") - else: - juce_modules = [] -- for item in os.listdir(args.source_dir): -+ for item in sorted(os.listdir(args.source_dir)): - if os.path.isdir(os.path.join(args.source_dir, item)): - juce_modules.append(item) - -@@ -136,7 +136,7 @@ - - # Create a list of the directories in the module that we can use as - # subgroups and create the Doxygen group hierarchy string. -- dir_contents = os.listdir(module_path) -+ dir_contents = sorted(os.listdir(module_path)) - # Ignore "native" folders as these are excluded by doxygen. - try: - dir_contents.remove("native") diff --git a/debian/patches/series b/debian/patches/series index 47db8b2b..cfe48f54 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -3,7 +3,6 @@ debian_no-update-check.patch debian_system_modules.patch debian_python3-doxygen.patch debian_doxygen-outdir.patch -reproducible_docs.patch debian_unittests_globalpaths.patch debian_link_systemlibs.patch debian_buildcmake.patch -- 2.30.2