From 8b0848ffba2c29b478869613f36f296c44b55244 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Sat, 21 Jun 2025 20:51:40 -0600 Subject: [PATCH] =?UTF-8?q?config:=20agregar=20personalizaci=C3=B3n=20del?= =?UTF-8?q?=20CMXSL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helpers/config | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/helpers/config b/helpers/config index 96b479f..b39e4e7 100755 --- a/helpers/config +++ b/helpers/config @@ -38,18 +38,18 @@ fi [ -d PACKAGES ] || mkdir PACKAGES export DEBIAN_FRONTEND=noninteractive -export DEBEMAIL=trisquel-devel@listas.trisquel.info -export DEBFULLNAME="Trisquel GNU/Linux developers" +export DEBEMAIL=devel@cmxsl.org +export DEBFULLNAME="Desarrollo CMXSL" export CODENAME=ecne export REVISION=12.0 -export RELEASE=trisquel -export DOMAIN=trisquel.info +export RELEASE=cmxsl +export DOMAIN=cmxsl.org export UPSTREAM=noble export UPSTREAMRELEASE=24.04 -MIRROR=http://mirrors.ocf.berkeley.edu/ubuntu/ +MIRROR=http://archive.ubuntu.com/ubuntu/ LOCALMIRROR=http://archive.trisquel.org/trisquel -GIT_TPH_REPO=https://gitlab.trisquel.org/trisquel/package-helpers -LOCAL_APT=`mktemp -d` +GIT_TPH_REPO=https://git.cmxsl.org/CMXSL.org/package-helpers-cmxsl +LOCAL_APT=`mktemp -d` if [[ "$PACKAGE" =~ ^linux(-hwe-[0-9]+\.[0-9]+)?$ && -n "$LP_VERSION" ]]; then # Function to truncate the version string to the major version (e.g., 6.5.0) truncate_version() { @@ -89,7 +89,7 @@ head -n 1 debian/changelog | grep -q $UPSTREAM-security && REPO=$CODENAME-securi echo | dch -D $REPO -v $FULLVERSION "$1" # Make sure the changelog file is identical between archs -/bin/sed "/-- Trisquel/s/.*/ -- Trisquel GNU\/Linux developers $DATE/" -i debian/changelog +/bin/sed "/-- Desarrollo/s/.*/ -- Desarrollo CMXSL $DATE/" -i debian/changelog } @@ -196,7 +196,7 @@ cd source UPSTREAMVERSION=$(dpkg-parsechangelog --show-field Version) -export FULLVERSION=$(dpkg-parsechangelog --show-field Version)trisquel${VERSION} +export FULLVERSION=$(dpkg-parsechangelog --show-field Version)cmxsl${VERSION} # Use 3.0 (native) deb source format [ -f debian/source/format ] && echo "3 (native)" > debian/source/format @@ -221,7 +221,7 @@ cd .. mv source $PACKAGE-$FULLVERSION dpkg-source -b -I.falsefileextension99 $PACKAGE-$FULLVERSION rm -rf ${LOCAL_APT} -echo -e "> Trisquel source package built! - $(date -R)\n" +echo -e "> CMXSL source package built! - $(date -R)\n" notify_found_distro_match_on_debian_rules }