summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaawda2022-05-31 21:29:05 +0200
committerhaawda2022-05-31 21:29:05 +0200
commit82f2b6419a6b63fee0b1d13747862a061ee0fef5 (patch)
treebfaf529bde5f14409c6e52852d2d438fe387f237
parent71862beab06c26f23d461b49703b193d49956dff (diff)
downloadaur-82f2b6419a6b63fee0b1d13747862a061ee0fef5.tar.gz
remove patch
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD12
-rw-r--r--fix_buildsystem.patch23
3 files changed, 4 insertions, 35 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 684f65045ec7..8fd2525c7313 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = lilypond-git
pkgdesc = An automated music engraving system (Git snapshot)
- pkgver = 2.23b31827.8b533bda3b
+ pkgver = 2.23b31835.91b883ad01
pkgrel = 1
url = http://lilypond.org/
arch = i686
@@ -28,8 +28,6 @@ pkgbase = lilypond-git
conflicts = lilypond
options = !makeflags
source = git+https://gitlab.com/lilypond/lilypond.git
- source = fix_buildsystem.patch
sha256sums = SKIP
- sha256sums = 4c04ea356f87321ab816ce25d28d3301698b8091df5f248f6bdc882cd9953f06
pkgname = lilypond-git
diff --git a/PKGBUILD b/PKGBUILD
index c49ce6ec2d44..1fbe6fed9dc4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
# delete the $srcdir directory before building
pkgname=lilypond-git
-pkgver=2.23b31827.8b533bda3b
+pkgver=2.23b31835.91b883ad01
pkgrel=1
pkgdesc="An automated music engraving system (Git snapshot)"
arch=('i686' 'x86_64')
@@ -30,9 +30,8 @@ optdepends=('extractpdfmark: for reducing the size of pdf output significantly'
'tk: for the gui')
provides=('lilypond')
conflicts=('lilypond')
-source=(git+https://gitlab.com/lilypond/lilypond.git fix_buildsystem.patch)
-sha256sums=('SKIP'
- '4c04ea356f87321ab816ce25d28d3301698b8091df5f248f6bdc882cd9953f06')
+source=(git+https://gitlab.com/lilypond/lilypond.git)
+sha256sums=('SKIP')
options=('!makeflags')
pkgver() {
@@ -42,11 +41,6 @@ pkgver() {
"$(git rev-parse --short HEAD)"
}
-prepare() {
- cd lilypond/
- patch -Np1 < "$srcdir"/fix_buildsystem.patch
-}
-
build() {
cd lilypond/
[[ -f config.hh ]] && rm config.hh
diff --git a/fix_buildsystem.patch b/fix_buildsystem.patch
deleted file mode 100644
index ee164e5e61a3..000000000000
--- a/fix_buildsystem.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/lily/GNUmakefile b/lily/GNUmakefile
-index c688b836e5..6ce235f257 100644
---- a/lily/GNUmakefile
-+++ b/lily/GNUmakefile
-@@ -103,15 +103,15 @@ $(outdir)/general-scheme.o: $(outdir)/version.hh
- $(outdir)/lily-version.o: $(outdir)/version.hh
- $(outdir)/relocate.o: $(outdir)/version.hh
-
--prefix :={c++}/[ \t]*
-+pre :={c++}/[ \t]*
- second :=[ \t\n\v]*([^,]*,[^""]*\"\([^""]*\)/\1/m
- third :=[ \t\n\v]*([^,]*,[^,]*,[^""]*\"\([^""]*\)/\1/m
- three-arg-calls := MAKE_SCHEME_CALLBACK_WITH_OPTARGS MAKE_DOCUMENTED_SCHEME_CALLBACK MAKE_SCHEME_CALLBACK
- two-arg-calls := LY_DEFINE LY_DEFINE_WITH_SETTER
-
- regex_ =
--regex_ += $(foreach fname,$(two-arg-calls),--regex='$(prefix)$(fname)$(second)')
--regex_ += $(foreach fname,$(three-arg-calls),--regex='$(prefix)$(fname)$(third)')
-+regex_ += $(foreach fname,$(two-arg-calls),--regex='$(pre)$(fname)$(second)')
-+regex_ += $(foreach fname,$(three-arg-calls),--regex='$(pre)$(fname)$(third)')
-
- ETAGS_FLAGS += $(regex_)
- CTAGS_FLAGS += $(regex_)