upgpkg: aseprite 1.3.8-1

upstream release
This commit is contained in:
ImperatorStorm 2024-08-20 19:27:26 -05:00
parent 5c01d1c231
commit fc1ea126c9
4 changed files with 16 additions and 117 deletions

View File

@ -1,7 +1,7 @@
pkgbase = aseprite
pkgdesc = Create animated sprites and pixel art
pkgver = 1.3.7
pkgrel = 2
pkgver = 1.3.8
pkgrel = 1
url = https://www.aseprite.org/
arch = x86_64
license = LicenseRef-Aseprite-EULA
@ -32,9 +32,9 @@ pkgbase = aseprite
depends = libgl
depends = libfontconfig.so
depends = libxcursor
noextract = Aseprite-v1.3.7-Source.zip
noextract = Aseprite-v1.3.8-Source.zip
noextract = skia-m102.tar.gz
source = https://github.com/aseprite/aseprite/releases/download/v1.3.7/Aseprite-v1.3.7-Source.zip
source = https://github.com/aseprite/aseprite/releases/download/v1.3.8/Aseprite-v1.3.8-Source.zip
source = skia-m102.tar.gz::https://github.com/aseprite/skia/archive/refs/tags/m102-861e4743af.tar.gz
source = desktop.patch
source = shared-fmt.patch
@ -42,15 +42,13 @@ pkgbase = aseprite
source = shared-libwebp.patch
source = shared-skia-deps.patch
source = optional-pixman.patch
source = ENABLE_UPDATER-fix.patch
sha256sums = 6524b4dd38adac22f954122846ccca7377983cee2e0f17c1482294cf09cbdcfc
sha256sums = 4d62248a4b55ae6a5dc9a8974464ab166a009a6b2cc3f24ddb160b621d2f997c
sha256sums = 8d76c1ad3693e1fc019eb14d806082148eb4ed7d601474aeeaae601b05a9b3ad
sha256sums = 8b14e36939e930de581e95abf0591645aa0fcfd47161cf88b062917dbaaef7f9
sha256sums = c3591d376180d99ff8001c3d549c0bd18ef5e4d95f1755ccaa8e2fd65dd5d2b3
sha256sums = d7f2f8c43d24382453273ed17b1c0e05928980a36ad0b7c988da3aa0fe32de53
sha256sums = bed004cdbe61793c759a30c4afa5d844ce08c55a321d5c3625426f059f98b503
sha256sums = 320ed456512fb26f30aa682d7d34529d6fc3372d76daba3812cecb8fc21d5f1d
sha256sums = eb9f544e68b41b5cb1a9ab7a6648db51587e67e94f1a452cb5a84f3d224bf5d0
sha256sums = c2d14f9738a96a9db3695c00ac3d14b1312b6a595b151bd56e19422c86517654
sha256sums = 31369a5063d5f7839699fea00235b70057b0f2619592ba1db5af6d12c4f1171c
pkgname = aseprite

View File

@ -1,95 +0,0 @@
From 8fce589069090bb086d7ad7b0b50340171c98b17 Mon Sep 17 00:00:00 2001
From: David Capello <david@igara.com>
Date: Wed, 22 May 2024 12:41:23 -0300
Subject: [PATCH] Now updater-lib is always compiled as it's required for
app.os.fullName in scripts (fix #4486)
ENABLE_UPDATER flag now only controls the "check update" portion of
the updater-lib. Probably the user agent string could be moved to the
ver-lib in the future.
---
src/CMakeLists.txt | 8 ++++----
src/app/CMakeLists.txt | 5 +----
src/updater/CMakeLists.txt | 22 +++++++++++-----------
3 files changed, 16 insertions(+), 19 deletions(-)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 0f676af1e3..3b44e9e55e 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -117,6 +117,10 @@ if(REQUIRE_CURL)
add_subdirectory(net)
endif()
+# We need the updater library to check for updates (when
+# ENABLE_UPDATER) or for the app.os object (ENABLE_SCRIPTING).
+add_subdirectory(updater)
+
if(GEN_EXE)
add_executable(gen IMPORTED)
set_target_properties(gen PROPERTIES IMPORTED_LOCATION ${GEN_EXE})
@@ -127,10 +131,6 @@ else()
set(GEN_DEP gen)
endif()
-if(ENABLE_UPDATER)
- add_subdirectory(updater)
-endif()
-
if(ENABLE_STEAM)
add_subdirectory(steam)
endif()
diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt
index 0db978e882..63b60a9aed 100644
--- a/src/app/CMakeLists.txt
+++ b/src/app/CMakeLists.txt
@@ -717,6 +717,7 @@ target_link_libraries(app-lib
laf-os
ui-lib
ver-lib
+ updater-lib
undo
${CMARK_LIBRARIES}
${TINYXML_LIBRARY}
@@ -756,10 +757,6 @@ if(ENABLE_SCRIPTING)
endif()
endif()
-if(ENABLE_UPDATER)
- target_link_libraries(app-lib updater-lib)
-endif()
-
if(ENABLE_STEAM)
# We need the ENABLE_STEAM flag in main module too so AppOptions are
# equal in both modules, app-lib and main (that's why this flag is
diff --git a/src/updater/CMakeLists.txt b/src/updater/CMakeLists.txt
index 6dc818caf3..15e6b4c8f2 100644
--- a/src/updater/CMakeLists.txt
+++ b/src/updater/CMakeLists.txt
@@ -1,15 +1,15 @@
# ASEPRITE
-# Copyright (C) 2020-2021 Igara Studio S.A.
+# Copyright (C) 2020-2024 Igara Studio S.A.
# Copyright (C) 2001-2017 David Capello
-set(UPDATER_LIB_SOURCES
- check_update.cpp
- user_agent.cpp)
+# By default the updater-lib will contain only the functions related
+# the user agent string.
+add_library(updater-lib user_agent.cpp)
+target_link_libraries(updater-lib laf-base ver-lib)
-add_library(updater-lib ${UPDATER_LIB_SOURCES})
-
-target_link_libraries(updater-lib
- laf-base
- net-lib
- ver-lib
- ${TINYXML_LIBRARY})
+# Only when ENABLE_UPDATER is ON we'll enable the "check for update"
+# portion of the library.
+if(ENABLE_UPDATER)
+ target_sources(updater-lib PRIVATE check_update.cpp)
+ target_link_libraries(updater-lib net-lib ${TINYXML_LIBRARY})
+endif()

View File

@ -9,10 +9,10 @@
# Contributor: Kamil Biduś <kamil.bidus@gmail.com>
pkgname=aseprite
pkgver=1.3.7
pkgver=1.3.8
_skiaver=m102
_skiahash=861e4743af
pkgrel=2
pkgrel=1
pkgdesc='Create animated sprites and pixel art'
arch=('x86_64')
url="https://www.aseprite.org/"
@ -49,19 +49,17 @@ source=("https://github.com/aseprite/aseprite/releases/download/v$pkgver/Aseprit
# Based on https://patch-diff.githubusercontent.com/raw/aseprite/aseprite/pull/2523.patch
shared-libwebp.patch
shared-skia-deps.patch
optional-pixman.patch
ENABLE_UPDATER-fix.patch)
optional-pixman.patch)
noextract=("Aseprite-v$pkgver-Source.zip"
"skia-$_skiaver.tar.gz") # Don't extract Aseprite or skia sources at the root
sha256sums=('6524b4dd38adac22f954122846ccca7377983cee2e0f17c1482294cf09cbdcfc'
sha256sums=('4d62248a4b55ae6a5dc9a8974464ab166a009a6b2cc3f24ddb160b621d2f997c'
'8d76c1ad3693e1fc019eb14d806082148eb4ed7d601474aeeaae601b05a9b3ad'
'8b14e36939e930de581e95abf0591645aa0fcfd47161cf88b062917dbaaef7f9'
'c3591d376180d99ff8001c3d549c0bd18ef5e4d95f1755ccaa8e2fd65dd5d2b3'
'd7f2f8c43d24382453273ed17b1c0e05928980a36ad0b7c988da3aa0fe32de53'
'bed004cdbe61793c759a30c4afa5d844ce08c55a321d5c3625426f059f98b503'
'320ed456512fb26f30aa682d7d34529d6fc3372d76daba3812cecb8fc21d5f1d'
'eb9f544e68b41b5cb1a9ab7a6648db51587e67e94f1a452cb5a84f3d224bf5d0'
'c2d14f9738a96a9db3695c00ac3d14b1312b6a595b151bd56e19422c86517654'
'31369a5063d5f7839699fea00235b70057b0f2619592ba1db5af6d12c4f1171c')
'c2d14f9738a96a9db3695c00ac3d14b1312b6a595b151bd56e19422c86517654')
prepare() {
# Extract Aseprite's sources
@ -80,8 +78,6 @@ prepare() {
# Their "FindSkia" module forcefully tries to use Skia's FreeType and HarfBuzz,
# but we don't clone those because we use the shared ones. Avoid overwriting the settings instead.
env -C aseprite patch -tp1 <shared-skia-deps.patch
# Backport https://github.com/aseprite/aseprite/commit/8fce589069090bb086d7ad7b0b50340171c98b17
env -C aseprite patch -tp1 <ENABLE_UPDATER-fix.patch
}
build() {

View File

@ -61,10 +61,10 @@ index ffd1c0cfcd..4839d4097c 100644
# libarchive
+if(NOT USE_SHARED_LIBARCHIVE)
set(ENABLE_WERROR OFF CACHE BOOL "Treat warnings as errors - default is ON for Debug, OFF otherwise.")
set(ENABLE_TEST OFF CACHE BOOL "Enable unit and regression tests")
set(ENABLE_COVERAGE OFF CACHE BOOL "Enable code coverage (GCC only, automatically sets ENABLE_TEST to ON)")
@@ -123,6 +124,7 @@ set(ENABLE_CPIO OFF CACHE BOOL "Enable cpio building")
set(HAVE_WCSCPY 1)
set(HAVE_WCSLEN 1)
@@ -126,6 +127,7 @@ set(ENABLE_CPIO OFF CACHE BOOL "Enable cpio building")
add_subdirectory(libarchive)
target_include_directories(archive_static INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/libarchive/libarchive>)