gnu: scintilla: Update to 5.1.5.
* gnu/packages/text-editors.scm (scintilla): Update to 5.1.5. [arguments]<#:make-flags>: Use CC-FOR-TARGET. [native-inputs]: Remove labels.
This commit is contained in:
		
							parent
							
								
									37a202bd1c
								
							
						
					
					
						commit
						128b2f1503
					
				
					 1 changed files with 6 additions and 5 deletions
				
			
		| 
						 | 
					@ -901,17 +901,19 @@ Octave.  TeXmacs is completely extensible via Guile.")
 | 
				
			||||||
(define-public scintilla
 | 
					(define-public scintilla
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "scintilla")
 | 
					    (name "scintilla")
 | 
				
			||||||
    (version "5.1.4")
 | 
					    (version "5.1.5")
 | 
				
			||||||
    (source
 | 
					    (source
 | 
				
			||||||
     (origin
 | 
					     (origin
 | 
				
			||||||
       (method url-fetch)
 | 
					       (method url-fetch)
 | 
				
			||||||
       (uri (let ((v (apply string-append (string-split version #\.))))
 | 
					       (uri (let ((v (apply string-append (string-split version #\.))))
 | 
				
			||||||
              (string-append "https://www.scintilla.org/scintilla" v ".tgz")))
 | 
					              (string-append "https://www.scintilla.org/scintilla" v ".tgz")))
 | 
				
			||||||
       (sha256
 | 
					       (sha256
 | 
				
			||||||
        (base32 "0rd3scfs3dwaj85ds8yrcp1r8z0lifi7qv2464k6n1c995amr0nw"))))
 | 
					        (base32 "0mwyhjvmvxyip9z169bgpkz4k9la802z438m8bb0f4gyqfbif999"))))
 | 
				
			||||||
    (build-system gnu-build-system)
 | 
					    (build-system gnu-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     `(#:make-flags (list "GTK3=1" "CC=gcc" "-Cgtk")
 | 
					     `(#:make-flags (list "GTK3=1"
 | 
				
			||||||
 | 
					                          ,(string-append "CC=" (cc-for-target))
 | 
				
			||||||
 | 
					                          "-Cgtk")
 | 
				
			||||||
       #:tests? #f                      ;require un-packaged Pyside
 | 
					       #:tests? #f                      ;require un-packaged Pyside
 | 
				
			||||||
       #:phases
 | 
					       #:phases
 | 
				
			||||||
       (modify-phases %standard-phases
 | 
					       (modify-phases %standard-phases
 | 
				
			||||||
| 
						 | 
					@ -927,8 +929,7 @@ Octave.  TeXmacs is completely extensible via Guile.")
 | 
				
			||||||
               (for-each (lambda (f) (install-file f include))
 | 
					               (for-each (lambda (f) (install-file f include))
 | 
				
			||||||
                         (find-files "include/" "."))))))))
 | 
					                         (find-files "include/" "."))))))))
 | 
				
			||||||
    (native-inputs
 | 
					    (native-inputs
 | 
				
			||||||
     `(("pkg-config" ,pkg-config)
 | 
					     (list pkg-config python-wrapper))
 | 
				
			||||||
       ("python" ,python-wrapper)))
 | 
					 | 
				
			||||||
    (inputs
 | 
					    (inputs
 | 
				
			||||||
     (list gtk+))
 | 
					     (list gtk+))
 | 
				
			||||||
    (home-page "https://www.scintilla.org/")
 | 
					    (home-page "https://www.scintilla.org/")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue