diff --git a/Manual.md b/Manual.md index a29d16e9b5..56ceb4a245 100644 --- a/Manual.md +++ b/Manual.md @@ -459,29 +459,29 @@ The following repository names are valid: #### Checking for new upstream releases -For automatic checking of new versions, in some cases you need to define -these variables (in most cases, the sensible defaults work): +New upstream versions can be automatically checked using +`./xbps-src update-check `. In some cases you need to override +the sensible defaults by assigning the following variables in a `update` +file in the same directory as the relevant `template` file: -- `update_site` contains the URL where the version number is +- `site` contains the URL where the version number is mentioned. If unset, defaults to `homepage` and the directories where `distfiles` reside. -- `update_pkgname` is the package name the default pattern checks for. -If unset, defaults to `pkgname`. +- `pkgname` is the package name the default pattern checks for. +If unset, defaults to `pkgname` from the template. -- `update_pattern` is a perl-compatible regular expression +- `pattern` is a perl-compatible regular expression matching the version number. Anchor the version number using `\K` -and `(?=...)`. Example: `update_pattern='\K[\d.]+(?=)'`, this +and `(?=...)`. Example: `pattern='\K[\d.]+(?=)'`, this matches a version number enclosed in `...` tags. -- `update_ignore` is a space-separated list of shell globs that match +- `ignore` is a space-separated list of shell globs that match version numbers which are not taken into account for checking newer -versions. Example: `update_ignore="*b*"` +versions. Example: `ignore="*b*"` -- `update_version` is the version number used to compare against -upstream versions. Example: `update_version=${version//./_}` - -You can run such a check using `./xbps-src update-check `. +- `version` is the version number used to compare against +upstream versions. Example: `version=${version//./_}` ### build style scripts diff --git a/common/environment/setup/sourcepkg.sh b/common/environment/setup/sourcepkg.sh index 0c9af9dea4..1301787dbb 100644 --- a/common/environment/setup/sourcepkg.sh +++ b/common/environment/setup/sourcepkg.sh @@ -9,7 +9,6 @@ unset -v make_cmd make_build_args make_install_args make_build_target make_insta unset -v patch_args disable_parallel_build keep_libtool_archives unset -v reverts subpackages makedepends hostmakedepends depends unset -v build_options build_options_default bootstrap repository -unset -v update_pkgname update_site update_pattern update_ignore update_version unset -v CFLAGS CXXFLAGS CPPFLAGS LDFLAGS LD_LIBRARY_PATH unset -v CC CXX CPP GCC LD AR AS RANLIB NM OBJDUMP OBJCOPY STRIP READELF diff --git a/common/xbps-src/shutils/update_check.sh b/common/xbps-src/shutils/update_check.sh index e05406f9d3..b8f71e91f6 100644 --- a/common/xbps-src/shutils/update_check.sh +++ b/common/xbps-src/shutils/update_check.sh @@ -2,6 +2,15 @@ update_check() { local i p url sfname lpname bbname githubname rx found_version consider + local update_override=$XBPS_SRCPKGDIR/$XBPS_TARGET_PKG/update + local original_pkgname=$pkgname + + if [ -r $update_override ]; then + . $update_override + if [ "$XBPS_UPDATE_CHECK_VERBOSE" ]; then + echo "using $XBPS_TARGET_PKG/update overrides" 1>&2 + fi + fi if ! type curl >/dev/null 2>&1; then echo "ERROR: cannot find \`curl' executable!" @@ -9,50 +18,49 @@ update_check() { fi export LC_ALL=C - : ${update_pkgname:=$pkgname} - if [ -z "$update_site" ]; then + if [ -z "$site" ]; then printf '%s\n' "$homepage" for i in $distfiles; do printf '%s\n' "${i%/*}/" done else - printf '%s\n' "$update_site" + printf '%s\n' "$site" fi | while IFS= read -r url; do rx= - if [ -z "$update_site" ]; then + if [ -z "$site" ]; then case "$url" in *sourceforge.net/sourceforge*) sfname="$(printf %s "$url" | cut -d/ -f5)" url="http://sourceforge.net/projects/$sfname/rss?limit=200";; *code.google.com*|*googlecode*) - url="http://code.google.com/p/$update_pkgname/downloads/list";; + url="http://code.google.com/p/$pkgname/downloads/list";; *launchpad.net*) lpname="$(printf %s "$url" | cut -d/ -f4)" url="https://launchpad.net/$lpname/+download";; *cpan.*) - update_pkgname=${update_pkgname#perl-};; + pkgname=${pkgname#perl-};; *pypi.python.org*) - update_pkgname=${update_pkgname#python-};; + pkgname=${pkgname#python-};; *github.com*) githubname="$(printf %s "$url" | cut -d/ -f4,5)" url="https://github.com/$githubname/tags" - rx='/archive/(v?|\Q'"$update_pkgname"'\E-)?\K[\d\.]+(?=\.tar\.gz")';; + rx='/archive/(v?|\Q'"$pkgname"'\E-)?\K[\d\.]+(?=\.tar\.gz")';; *bitbucket.org*) bbname="$(printf %s "$url" | cut -d/ -f4,5)" url="https://bitbucket.org/$bbname/downloads" - rx='/(get|downloads)/(v?|\Q'"$update_pkgname"'\E-)?\K[\d\.]+(?=\.tar\.gz")';; + rx='/(get|downloads)/(v?|\Q'"$pkgname"'\E-)?\K[\d\.]+(?=\.tar\.gz")';; *ftp.gnome.org*) - : ${update_pattern="$update_pkgname-\K[0-9]\.[0-9]*[02468]\.[0-9.]*[0-9](?=)"} - url="http://ftp.gnome.org/pub/GNOME/sources/$update_pkgname/cache.json";; + : ${pattern="$pkgname-\K[0-9]\.[0-9]*[02468]\.[0-9.]*[0-9](?=)"} + url="http://ftp.gnome.org/pub/GNOME/sources/$pkgname/cache.json";; *kernel.org/pub/linux/kernel/*) rx=linux-'\K'${version%.*}'[\d.]+(?=\.tar\.xz)';; esac fi - rx=${update_pattern:-$rx} - rx=${rx:-'(?&2 @@ -62,14 +70,14 @@ update_check() { done | sort -Vu | { - grep . || echo "NO VERSION found for $pkgname" 1>&2 + grep . || echo "NO VERSION found for $original_pkgname" 1>&2 } | while IFS= read -r found_version; do if [ -n "$XBPS_UPDATE_CHECK_VERBOSE" ]; then echo "found version $found_version" fi consider=true - p="$update_ignore " + p="$ignore " while [ -n "$p" ]; do i=${p%% *} p=${p#* } @@ -82,10 +90,10 @@ update_check() { esac done if $consider; then - xbps-uhelper cmpver "$pkgname-${update_version:-$version}_1" \ - "$pkgname-$(printf %s "$found_version" | tr - .)_1" + xbps-uhelper cmpver "$original_pkgname-${version}_1" \ + "$original_pkgname-$(printf %s "$found_version" | tr - .)_1" if [ $? = 255 ]; then - echo "${pkgname}-${version} -> ${pkgname}-${found_version}" + echo "${original_pkgname}-${version} -> ${original_pkgname}-${found_version}" fi fi done diff --git a/srcpkgs/LuaJIT/template b/srcpkgs/LuaJIT/template index 5e825e81a2..ebc5be103f 100644 --- a/srcpkgs/LuaJIT/template +++ b/srcpkgs/LuaJIT/template @@ -6,7 +6,6 @@ short_desc="A Just-In-Time Compiler for Lua" maintainer="Juan RP " homepage="http://www.luajit.org" license="MIT" -update_site="http://luajit.org/download.html" distfiles="http://luajit.org/download/$pkgname-$version.tar.gz" checksum=55be6cb2d101ed38acca32c5b1f99ae345904b365b642203194c585d27bebd79 diff --git a/srcpkgs/LuaJIT/update b/srcpkgs/LuaJIT/update new file mode 100644 index 0000000000..1561391067 --- /dev/null +++ b/srcpkgs/LuaJIT/update @@ -0,0 +1 @@ +site="http://luajit.org/download.html" diff --git a/srcpkgs/MoinMoin/template b/srcpkgs/MoinMoin/template index 172480b4af..738096c3b2 100644 --- a/srcpkgs/MoinMoin/template +++ b/srcpkgs/MoinMoin/template @@ -13,7 +13,5 @@ short_desc="MoinMoin, a Python clone of WikiWiki" maintainer="Juan RP " homepage="http://moinmo.in" license="GPL-2" -update_site="${homepage}/MoinMoinDownload" -update_pkgname=moin distfiles="http://static.moinmo.in/files/moin-${version}.tar.gz" checksum=a74ba7fd8cf09b9e8415a4c45d7389ea910c09932da50359ea9796e3a30911a6 diff --git a/srcpkgs/MoinMoin/update b/srcpkgs/MoinMoin/update new file mode 100644 index 0000000000..cf0d1feb57 --- /dev/null +++ b/srcpkgs/MoinMoin/update @@ -0,0 +1,2 @@ +site="${homepage}/MoinMoinDownload" +pkgname=moin diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template index 7fe3f9f8d6..18056589ea 100644 --- a/srcpkgs/ReText/template +++ b/srcpkgs/ReText/template @@ -14,7 +14,6 @@ short_desc="Simple editor for Markdown and reStructuredText" maintainer="Enno Boland " license="GPL-3" homepage="http://retext.sourceforge.net" -update_ignore="*beta*" distfiles="${SOURCEFORGE_SITE}/retext/ReText-${version%.*}/ReText-${version}.tar.gz" checksum=a62f784f18bfcdad13969b8b15a8e92f57e930f23e93bfce1ab714e5ac77e939 diff --git a/srcpkgs/ReText/update b/srcpkgs/ReText/update new file mode 100644 index 0000000000..125db71da8 --- /dev/null +++ b/srcpkgs/ReText/update @@ -0,0 +1 @@ +ignore="*beta*" diff --git a/srcpkgs/abook/template b/srcpkgs/abook/template index c7646310cb..a7487a5969 100644 --- a/srcpkgs/abook/template +++ b/srcpkgs/abook/template @@ -7,7 +7,6 @@ makedepends="ncurses-devel readline-devel>=6.3" maintainer="Philipp Hirsch " license="GPL-2" homepage="http://abook.sourceforge.net/" -update_ignore="*pre* *rc*" short_desc="text-based addressbook designed to use with mutt mail client" distfiles="http://prdownloads.sourceforge.net/abook/${pkgname}-${version}.tar.gz" checksum=0646f6311a94ad3341812a4de12a5a940a7a44d5cb6e9da5b0930aae9f44756e diff --git a/srcpkgs/abook/update b/srcpkgs/abook/update new file mode 100644 index 0000000000..f98277babc --- /dev/null +++ b/srcpkgs/abook/update @@ -0,0 +1 @@ +ignore="*pre* *rc*" diff --git a/srcpkgs/acpica-utils/template b/srcpkgs/acpica-utils/template index 88ffce9b2f..a76836fe7c 100644 --- a/srcpkgs/acpica-utils/template +++ b/srcpkgs/acpica-utils/template @@ -9,8 +9,6 @@ short_desc="Intel ACPI CA Unix utilities" homepage="https://www.acpica.org/" license="GPL-2" maintainer="Juan RP " -update_site="https://acpica.org/downloads" -update_pkgname="acpica-unix" distfiles="http://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz" checksum=f2f72e4f4d1eb40a7d5bf23512e3733b15e708ede40ed362d0fb563a5e8d64cc diff --git a/srcpkgs/acpica-utils/update b/srcpkgs/acpica-utils/update new file mode 100644 index 0000000000..499e40b921 --- /dev/null +++ b/srcpkgs/acpica-utils/update @@ -0,0 +1,2 @@ +site="https://acpica.org/downloads" +pkgname="acpica-unix" diff --git a/srcpkgs/agg/template b/srcpkgs/agg/template index b567b9f850..42c4a93eff 100644 --- a/srcpkgs/agg/template +++ b/srcpkgs/agg/template @@ -9,8 +9,6 @@ makedepends="freetype-devel SDL-devel" short_desc="A High Quality Rendering Engine for C++" maintainer="Juan RP " homepage="http://www.antigrain.com/" -update_site="http://www.antigrain.com/download/index.html" -update_ignore="21 22 23 2web" license="GPL-2" distfiles="http://www.antigrain.com/agg-${version}.tar.gz" checksum=ab1edc54cc32ba51a62ff120d501eecd55fceeedf869b9354e7e13812289911f diff --git a/srcpkgs/agg/update b/srcpkgs/agg/update new file mode 100644 index 0000000000..a9f8a73960 --- /dev/null +++ b/srcpkgs/agg/update @@ -0,0 +1,2 @@ +site="http://www.antigrain.com/download/index.html" +ignore="21 22 23 2web" diff --git a/srcpkgs/aircrack-ng/template b/srcpkgs/aircrack-ng/template index 79209120a1..5f97082a8e 100644 --- a/srcpkgs/aircrack-ng/template +++ b/srcpkgs/aircrack-ng/template @@ -16,4 +16,3 @@ maintainer="Jan S. " license="GPL-2" distfiles="http://download.aircrack-ng.org/${pkgname}-${_aircrack_ver}-${_aircrack_rc}.tar.gz" checksum=cf3134521e1c3d7aed4e384e3e5e7b6959e2d485bd1554474608a3a9328e35fd -update_pattern="Latest version: \K[^<]*(?=<.*)" diff --git a/srcpkgs/aircrack-ng/update b/srcpkgs/aircrack-ng/update new file mode 100644 index 0000000000..abcdcd27d8 --- /dev/null +++ b/srcpkgs/aircrack-ng/update @@ -0,0 +1 @@ +pattern="Latest version: \K[^<]*(?=<.*)" diff --git a/srcpkgs/allegro4/template b/srcpkgs/allegro4/template index 0ec06217ca..7a4214fc02 100644 --- a/srcpkgs/allegro4/template +++ b/srcpkgs/allegro4/template @@ -14,8 +14,6 @@ short_desc="Portable library mainly aimed at video game and multimedia programmi maintainer="Juan RP " license="Allegro License (MIT alike)" homepage="http://alleg.sourceforge.net/" -update_pkgname=allegro -update_ignore='5.*' distfiles="${SOURCEFORGE_SITE}/alleg/allegro-$version.tar.gz" checksum=1b21e7577dbfada02d85ca4510bd22fedaa6ce76fde7f4838c7c1276eb840fdc nocross=yes diff --git a/srcpkgs/allegro4/update b/srcpkgs/allegro4/update new file mode 100644 index 0000000000..4fb6771ae9 --- /dev/null +++ b/srcpkgs/allegro4/update @@ -0,0 +1,2 @@ +pkgname=allegro +ignore='5.*' diff --git a/srcpkgs/android-tools/template b/srcpkgs/android-tools/template index 31180fb4ed..9633e64e60 100644 --- a/srcpkgs/android-tools/template +++ b/srcpkgs/android-tools/template @@ -10,8 +10,6 @@ short_desc="Android platform tools (adb and fastboot)" maintainer="Eivind Uggedal " license="Apache-2.0 BSD" homepage="http://developer.android.com/tools/help/adb.html" -update_site="https://android.googlesource.com/platform/system/core" -update_pattern='android-\K[\d._r]+' do_fetch() { local r diff --git a/srcpkgs/android-tools/update b/srcpkgs/android-tools/update new file mode 100644 index 0000000000..e5c3658d32 --- /dev/null +++ b/srcpkgs/android-tools/update @@ -0,0 +1,2 @@ +site="https://android.googlesource.com/platform/system/core" +pattern='android-\K[\d._r]+' diff --git a/srcpkgs/apache-directory-studio/template b/srcpkgs/apache-directory-studio/template index ba3a519284..97cb9ecbb7 100644 --- a/srcpkgs/apache-directory-studio/template +++ b/srcpkgs/apache-directory-studio/template @@ -8,8 +8,6 @@ short_desc="LDAP browser and directory client" maintainer="Ypnose " license="Apache-2.0" homepage="http://directory.apache.org/studio/" -update_site="http://directory.apache.org/studio/download/download-linux.html" -update_pattern='ApacheDirectoryStudio-linux-x86_64-\K[\d.]+v[\d.]+' only_for_archs="i686 x86_64" if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then diff --git a/srcpkgs/apache-directory-studio/update b/srcpkgs/apache-directory-studio/update new file mode 100644 index 0000000000..1b26498175 --- /dev/null +++ b/srcpkgs/apache-directory-studio/update @@ -0,0 +1,2 @@ +site="http://directory.apache.org/studio/download/download-linux.html" +pattern='ApacheDirectoryStudio-linux-x86_64-\K[\d.]+v[\d.]+' diff --git a/srcpkgs/apache-fop/template b/srcpkgs/apache-fop/template index db85b49ade..1afb4f8453 100644 --- a/srcpkgs/apache-fop/template +++ b/srcpkgs/apache-fop/template @@ -6,7 +6,6 @@ short_desc="Java print formatter driven by XSL formatting objects (XSL-FO) and a maintainer="Carlo Dormeletti " license="Apache-2.0" homepage="http://xmlgraphics.apache.org/fop/" -update_pkgname="fop" distfiles="http://mirror.dkd.de/apache/xmlgraphics/fop/source/fop-${version}-src.tar.gz http://mirror.dkd.de/apache/xmlgraphics/fop/binaries/fop-${version}-bin.tar.gz" checksum="58164cb3298d130522ecd445b8082c71c36242ea6464c8f02ab4157e4a332522 diff --git a/srcpkgs/apache-fop/update b/srcpkgs/apache-fop/update new file mode 100644 index 0000000000..c4940dd70d --- /dev/null +++ b/srcpkgs/apache-fop/update @@ -0,0 +1 @@ +pkgname="fop" diff --git a/srcpkgs/apache/template b/srcpkgs/apache/template index 189a7bbe60..462cc81986 100644 --- a/srcpkgs/apache/template +++ b/srcpkgs/apache/template @@ -41,8 +41,6 @@ conf_files=" short_desc="The Number One HTTP Server On The Internet" maintainer="Juan RP " homepage="http://httpd.apache.org/" -update_site="http://httpd.apache.org/download.cgi" -update_pattern='httpd-\K[\d.]+' license="Apache-2.0" distfiles="http://www.apache.org/dist/httpd/httpd-${version}.tar.bz2" checksum=176c4dac1a745f07b7b91e7f4fd48f9c48049fa6f088efe758d61d9738669c6a diff --git a/srcpkgs/apache/update b/srcpkgs/apache/update new file mode 100644 index 0000000000..6020137c65 --- /dev/null +++ b/srcpkgs/apache/update @@ -0,0 +1,2 @@ +site="http://httpd.apache.org/download.cgi" +pattern='httpd-\K[\d.]+' diff --git a/srcpkgs/apg/template b/srcpkgs/apg/template index 08e49f6908..9fc74c2175 100644 --- a/srcpkgs/apg/template +++ b/srcpkgs/apg/template @@ -4,8 +4,6 @@ version=2.2.3 revision=3 short_desc="Automated Password Generator" homepage="http://www.adel.nursat.kz/apg/" -update_site="http://www.adel.nursat.kz/apg/download.shtml" -update_ignore="*b" license="BSD" maintainer="Juan RP " distfiles="http://www.adel.nursat.kz/apg/download/apg-$version.tar.gz" diff --git a/srcpkgs/apg/update b/srcpkgs/apg/update new file mode 100644 index 0000000000..e67ac3b85e --- /dev/null +++ b/srcpkgs/apg/update @@ -0,0 +1,2 @@ +site="http://www.adel.nursat.kz/apg/download.shtml" +ignore="*b" diff --git a/srcpkgs/aqbanking/template b/srcpkgs/aqbanking/template index 6dab6f4192..716f5354c5 100644 --- a/srcpkgs/aqbanking/template +++ b/srcpkgs/aqbanking/template @@ -9,8 +9,6 @@ build_style="gnu-configure" maintainer="Enno Boland " license="LGPL" homepage="http://www.aquamaniac.de/aqbanking" -update_site="http://www.aquamaniac.de/sites/download/packages.php" -update_pattern='aqbanking-\K[\d.]+(-git)?' short_desc="A library for online banking and financial applications" distfiles="http://www2.aquamaniac.de/sites/download/download.php?package=03&release=${_dnrel}&file=01&dummy=aqbanking-$version.tar.gz" checksum=238f17d27d86e0cef239479c4be152cb98f5be9d6b87fca38741d32e762faddf diff --git a/srcpkgs/aqbanking/update b/srcpkgs/aqbanking/update new file mode 100644 index 0000000000..90b563249c --- /dev/null +++ b/srcpkgs/aqbanking/update @@ -0,0 +1,2 @@ +site="http://www.aquamaniac.de/sites/download/packages.php" +pattern='aqbanking-\K[\d.]+(-git)?' diff --git a/srcpkgs/argyllcms/template b/srcpkgs/argyllcms/template index d822282253..6a1435dd0a 100644 --- a/srcpkgs/argyllcms/template +++ b/srcpkgs/argyllcms/template @@ -9,8 +9,6 @@ short_desc="ICC compatible color management system" maintainer="Juan RP " license="GPL, AGPL" homepage="http://www.argyllcms.com/" -update_site="http://www.argyllcms.com/downloadsrc.html" -update_pattern='Argyll_V\K[\d.]+' distfiles="http://www.argyllcms.com/Argyll_V${version}_src.zip" checksum=188beaa03dd2459403415023f8f8f9aab362bf3062a9822b3622dde6902e4b84 diff --git a/srcpkgs/argyllcms/update b/srcpkgs/argyllcms/update new file mode 100644 index 0000000000..ba26260232 --- /dev/null +++ b/srcpkgs/argyllcms/update @@ -0,0 +1,2 @@ +site="http://www.argyllcms.com/downloadsrc.html" +pattern='Argyll_V\K[\d.]+' diff --git a/srcpkgs/artwiz-fonts/template b/srcpkgs/artwiz-fonts/template index 98a108912a..88f1c37c94 100644 --- a/srcpkgs/artwiz-fonts/template +++ b/srcpkgs/artwiz-fonts/template @@ -13,7 +13,6 @@ license="GPL-2" distfiles="${SOURCEFORGE_SITE}/artwizaleczapka/artwiz-aleczapka-en-$version.tar.bz2 ${SOURCEFORGE_SITE}/artwizaleczapka/artwiz-aleczapka-de-$version.tar.bz2 ${SOURCEFORGE_SITE}/artwizaleczapka/artwiz-aleczapka-se-$version.tar.bz2" -update_pkgname="artwiz-aleczapka-en" checksum="19f163de81548db9b9dd7d3a415fba379f1d17989020236aa4eb88c25929afe1 09096f0bd449c388f4c7f8ab0f9ebd7823dd8ede6baa5521a804e179020d1b20 f2e12338be85957fa36c013551fe06e0988141da3b817ffc63be15ffbe47cfc7" diff --git a/srcpkgs/artwiz-fonts/update b/srcpkgs/artwiz-fonts/update new file mode 100644 index 0000000000..e85a6f9dc6 --- /dev/null +++ b/srcpkgs/artwiz-fonts/update @@ -0,0 +1 @@ +pkgname="artwiz-aleczapka-en" diff --git a/srcpkgs/aspell-de/template b/srcpkgs/aspell-de/template index 6c5f9706eb..82e4768add 100644 --- a/srcpkgs/aspell-de/template +++ b/srcpkgs/aspell-de/template @@ -11,6 +11,5 @@ short_desc="German dictionary for aspell" homepage="http://aspell.net/" license="GPL-2" maintainer="Christian Neukirchen " -update_pattern='aspell6-de-\K[\d.]+\d+' distfiles="${GNU_SITE}/aspell/dict/de/aspell6-de-${version}-1.tar.bz2" checksum=ba6c94e11bc2e0e6e43ce0f7822c5bba5ca5ac77129ef90c190b33632416e906 diff --git a/srcpkgs/aspell-de/update b/srcpkgs/aspell-de/update new file mode 100644 index 0000000000..b097033fc4 --- /dev/null +++ b/srcpkgs/aspell-de/update @@ -0,0 +1 @@ +pattern='aspell6-de-\K[\d.]+\d+' diff --git a/srcpkgs/aspell-en/template b/srcpkgs/aspell-en/template index ee6090c23d..b08b866404 100644 --- a/srcpkgs/aspell-en/template +++ b/srcpkgs/aspell-en/template @@ -11,6 +11,5 @@ short_desc="English dictionary for aspell" homepage="http://aspell.net/" license="LGPL-2.1" maintainer="Juan RP " -update_pattern="aspell6-en-\K[\d.-]+" distfiles="${GNU_SITE}/aspell/dict/en/aspell6-en-${version}-0.tar.bz2" checksum=ff9df3c2e8c5bb19c6a66078b36a0ef4c4dfb0fcb969e29f7b5345e26d748d0a diff --git a/srcpkgs/aspell-en/update b/srcpkgs/aspell-en/update new file mode 100644 index 0000000000..10ff48bbf0 --- /dev/null +++ b/srcpkgs/aspell-en/update @@ -0,0 +1 @@ +pattern="aspell6-en-\K[\d.-]+" diff --git a/srcpkgs/astyle/template b/srcpkgs/astyle/template index 4efa810b50..80514e5fa6 100644 --- a/srcpkgs/astyle/template +++ b/srcpkgs/astyle/template @@ -9,7 +9,6 @@ short_desc="A free, fast and small automatic formatter for C, C++, C#, and Java maintainer="Juan RP " license="LGPL-3" homepage="http://astyle.sourceforge.net" -update_pattern='astyle_\K[\d.]+(?=_linux)' distfiles="${SOURCEFORGE_SITE}/$pkgname/${pkgname}_${version}_linux.tar.gz" checksum=fbdfc6f1966a972d19a215927266c76d4183eee235ed1e2bd7ec551c2a270eac diff --git a/srcpkgs/astyle/update b/srcpkgs/astyle/update new file mode 100644 index 0000000000..9c579fc9ae --- /dev/null +++ b/srcpkgs/astyle/update @@ -0,0 +1 @@ +pattern='astyle_\K[\d.]+(?=_linux)' diff --git a/srcpkgs/atop/template b/srcpkgs/atop/template index 24ce06383a..f225ae6902 100644 --- a/srcpkgs/atop/template +++ b/srcpkgs/atop/template @@ -11,7 +11,6 @@ short_desc="A system and process level monitor" maintainer="Juan RP " license="GPL-2" homepage="http://www.atoptool.nl/" -update_site="http://www.atoptool.nl/downloadatop.php" distfiles="http://www.atoptool.nl/download/$pkgname-$version.tar.gz" checksum=a620dbe0de7c7ee004949b201bed27559a8dd6cbdee651c7a3e15fc584723409 diff --git a/srcpkgs/atop/update b/srcpkgs/atop/update new file mode 100644 index 0000000000..89c569e3e4 --- /dev/null +++ b/srcpkgs/atop/update @@ -0,0 +1 @@ +site="http://www.atoptool.nl/downloadatop.php" diff --git a/srcpkgs/audacity/template b/srcpkgs/audacity/template index c79b014079..6295325b9b 100644 --- a/srcpkgs/audacity/template +++ b/srcpkgs/audacity/template @@ -17,8 +17,6 @@ short_desc="Graphical cross-platform audio editor" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://audacity.sourceforge.net/" -update_site="http://audacity.sourceforge.net/download/source" -update_pattern='audacity-minsrc-\K[\d.]+\d+' distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-minsrc-$version.tar.xz" checksum=3080c190e678e0d682961a36c6e990c572dacd6b5ce499e5cec7362e9fa37d7b diff --git a/srcpkgs/audacity/update b/srcpkgs/audacity/update new file mode 100644 index 0000000000..b1c1d77f10 --- /dev/null +++ b/srcpkgs/audacity/update @@ -0,0 +1,2 @@ +site="http://audacity.sourceforge.net/download/source" +pattern='audacity-minsrc-\K[\d.]+\d+' diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template index deb111221d..a2e0216209 100644 --- a/srcpkgs/avahi-discover/template +++ b/srcpkgs/avahi-discover/template @@ -22,7 +22,6 @@ short_desc="Service discover user interface for avahi" maintainer="Juan RP " license="LGPL-2.1" homepage="http://www.avahi.org" -update_pkgname="avahi" distfiles="$homepage/download/avahi-$version.tar.gz" checksum=8372719b24e2dd75de6f59bb1315e600db4fd092805bd1201ed0cb651a2dab48 diff --git a/srcpkgs/avahi-discover/update b/srcpkgs/avahi-discover/update new file mode 100644 index 0000000000..b8bee1a9ab --- /dev/null +++ b/srcpkgs/avahi-discover/update @@ -0,0 +1 @@ +pkgname="avahi" diff --git a/srcpkgs/b2sum/template b/srcpkgs/b2sum/template index 55c5b5d087..6f0d175368 100644 --- a/srcpkgs/b2sum/template +++ b/srcpkgs/b2sum/template @@ -10,7 +10,6 @@ maintainer="Christian Neukirchen " license="Public Domain" homepage="https://blake2.net/" distfiles="https://blake2.net/blake2_code_${version}.zip" -update_pkgname="blake2_code" checksum=456e6ac99ed4661ef8502526b0927f790699d232fbaf5b0ddbe3a64cc8d612e9 do_build() { diff --git a/srcpkgs/b2sum/update b/srcpkgs/b2sum/update new file mode 100644 index 0000000000..ff67f31f02 --- /dev/null +++ b/srcpkgs/b2sum/update @@ -0,0 +1 @@ +pkgname="blake2_code" diff --git a/srcpkgs/balsa/template b/srcpkgs/balsa/template index ad42c01abd..e8295c1134 100644 --- a/srcpkgs/balsa/template +++ b/srcpkgs/balsa/template @@ -13,7 +13,6 @@ depends="hicolor-icon-theme desktop-file-utils" short_desc="An email client for GNOME" maintainer="Juan RP " homepage="http://pawsa.fedorapeople.org/balsa/" -update_site="https://pawsa.fedorapeople.org/balsa/download.html" license="GPL-2" distfiles="http://pawsa.fedorapeople.org/balsa/balsa-${version}.tar.bz2" checksum=52ce445dca86eb42e2e402a5b76616a1a522b89acbb631215079022ef80a7a10 diff --git a/srcpkgs/balsa/update b/srcpkgs/balsa/update new file mode 100644 index 0000000000..da6b9e5f02 --- /dev/null +++ b/srcpkgs/balsa/update @@ -0,0 +1 @@ +site="https://pawsa.fedorapeople.org/balsa/download.html" diff --git a/srcpkgs/bam/template b/srcpkgs/bam/template index 17a76121db..0bad1f7fec 100644 --- a/srcpkgs/bam/template +++ b/srcpkgs/bam/template @@ -7,8 +7,6 @@ short_desc="A fast and flexible build system using Lua" maintainer="Christian Neukirchen " license="custom" homepage="http://github.com/matricks/bam" -update_site="http://matricks.github.io/bam/" -update_pattern='bam-\K[\d.]+\d+' distfiles="https://github.com/downloads/matricks/bam/${pkgname}-${version}.tar.gz" checksum=5e4e4920b4d265da582f66774e9b1ec8ddfbe75ddc028fba86c12f686ea18db3 diff --git a/srcpkgs/bam/update b/srcpkgs/bam/update new file mode 100644 index 0000000000..dcfe011d33 --- /dev/null +++ b/srcpkgs/bam/update @@ -0,0 +1,2 @@ +site="http://matricks.github.io/bam/" +pattern='bam-\K[\d.]+\d+' diff --git a/srcpkgs/bash-completion/template b/srcpkgs/bash-completion/template index 313c591645..8445ac806c 100644 --- a/srcpkgs/bash-completion/template +++ b/srcpkgs/bash-completion/template @@ -10,7 +10,6 @@ short_desc="Programmable completion for the GNU Bash shell" maintainer="Juan RP " license="GPL-2" homepage="http://bash-completion.alioth.debian.org/" -update_ignore="2008*" distfiles="http://${pkgname}.alioth.debian.org/files/${pkgname}-${version}.tar.bz2" checksum=2b606804a7d5f823380a882e0f7b6c8a37b0e768e72c3d4107c51fbe8a46ae4f diff --git a/srcpkgs/bash-completion/update b/srcpkgs/bash-completion/update new file mode 100644 index 0000000000..a772520058 --- /dev/null +++ b/srcpkgs/bash-completion/update @@ -0,0 +1 @@ +ignore="2008*" diff --git a/srcpkgs/beignet/template b/srcpkgs/beignet/template index 86b31eabda..092239120d 100644 --- a/srcpkgs/beignet/template +++ b/srcpkgs/beignet/template @@ -12,7 +12,6 @@ depends="ocl-icd" maintainer="Juan RP " license="LGPL-2.1" homepage="http://www.freedesktop.org/wiki/Software/Beignet/" -update_site="https://01.org/beignet/downloads" distfiles="https://01.org/sites/default/files/${pkgname}-${version}-source.tar.gz" checksum=e30c4d0f4c8917fa0df2467b2d70a4ee524f28d54c42c582262d5f08928ea543 diff --git a/srcpkgs/beignet/update b/srcpkgs/beignet/update new file mode 100644 index 0000000000..ca41e0afe6 --- /dev/null +++ b/srcpkgs/beignet/update @@ -0,0 +1 @@ +site="https://01.org/beignet/downloads" diff --git a/srcpkgs/biew/template b/srcpkgs/biew/template index 963347d5bd..da366fd1dd 100644 --- a/srcpkgs/biew/template +++ b/srcpkgs/biew/template @@ -9,7 +9,6 @@ short_desc="Console hex viewer/editor and disassembler" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://beye.sourceforge.net/" -update_pattern='biew/\K[\d.]+' distfiles="${SOURCEFORGE_SITE}/beye/${pkgname}/${version}/${pkgname}-${_shortversion}-src.tar.bz2" checksum=2e85f03c908dd6ec832461fbfbc79169a33f4caccf48c8fe60cbd29f5fb06d17 nocross=yes diff --git a/srcpkgs/biew/update b/srcpkgs/biew/update new file mode 100644 index 0000000000..d8ffdcd1d9 --- /dev/null +++ b/srcpkgs/biew/update @@ -0,0 +1 @@ +pattern='biew/\K[\d.]+' diff --git a/srcpkgs/bind/template b/srcpkgs/bind/template index 8f48347496..9af1187054 100644 --- a/srcpkgs/bind/template +++ b/srcpkgs/bind/template @@ -9,8 +9,6 @@ short_desc="Berkeley Internet Name Domain server" maintainer="Juan RP " license="ISC" homepage="http://www.isc.org/software/bind/" -update_site="http://ftp.isc.org/isc/bind9/" -update_pattern="9\.[\d.]+(?=/)" distfiles="http://ftp.isc.org/isc/bind9/${_distver}-${_patchver}/bind-${_distver}-${_patchver}.tar.gz" checksum=dfedcb2b414d2803accd1a9c21d183178a288f40a2486af5ec0d3369a8cb8526 diff --git a/srcpkgs/bind/update b/srcpkgs/bind/update new file mode 100644 index 0000000000..1333af1353 --- /dev/null +++ b/srcpkgs/bind/update @@ -0,0 +1,2 @@ +site="http://ftp.isc.org/isc/bind9/" +pattern="9\.[\d.]+(?=/)" diff --git a/srcpkgs/bitcoin/template b/srcpkgs/bitcoin/template index 1a31a8ea85..a302717ff0 100644 --- a/srcpkgs/bitcoin/template +++ b/srcpkgs/bitcoin/template @@ -9,8 +9,6 @@ short_desc="Bitcoin is a peer-to-peer network based digital currency" maintainer="Juan RP " license="MIT" homepage="http://www.bitcoin.org/" -update_site="https://bitcoin.org/en/download" -update_pattern='bitcoin-\K[\d.]+(?=-linux.tar.gz)' distfiles="http://bitcoin.org/bin/${version}/bitcoin-${version}-linux.tar.gz" checksum=c425783b6cbab9b801ad6a1dcc9235828b98e5dee6675112741f8b210e4f65cd diff --git a/srcpkgs/bitcoin/update b/srcpkgs/bitcoin/update new file mode 100644 index 0000000000..290264346f --- /dev/null +++ b/srcpkgs/bitcoin/update @@ -0,0 +1,2 @@ +site="https://bitcoin.org/en/download" +pattern='bitcoin-\K[\d.]+(?=-linux.tar.gz)' diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template index 348ffeb4a8..686cf859cb 100644 --- a/srcpkgs/boost/template +++ b/srcpkgs/boost/template @@ -7,8 +7,6 @@ makedepends="zlib-devel bzip2-devel icu-devel>=54" short_desc="Free peer-reviewed portable C++ source libraries" maintainer="Juan RP " homepage="http://www.boost.org/" -update_site="http://www.boost.org/users/download/" -update_pattern='Version \K[\d.]+(?! beta)(?=<)' license="Boost Software License 1.0" distfiles="${SOURCEFORGE_SITE}/$pkgname/${pkgname}_${version//\./_}.tar.bz2" checksum=047e927de336af106a24bceba30069980c191529fd76b8dff8eb9a328b48ae1d diff --git a/srcpkgs/boost/update b/srcpkgs/boost/update new file mode 100644 index 0000000000..8a628710ca --- /dev/null +++ b/srcpkgs/boost/update @@ -0,0 +1,2 @@ +site="http://www.boost.org/users/download/" +pattern='Version \K[\d.]+(?! beta)(?=<)' diff --git a/srcpkgs/bridge-utils/template b/srcpkgs/bridge-utils/template index cc6a23e7ac..6580c7e863 100644 --- a/srcpkgs/bridge-utils/template +++ b/srcpkgs/bridge-utils/template @@ -8,8 +8,6 @@ short_desc="Layer2 ethernet bridging for Linux" maintainer="Juan RP " license="GPL-2" homepage="http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge" -update_pkgname="bridge" -update_pattern="bridge-utils-\K[\d.]+" distfiles="${SOURCEFORGE_SITE}/bridge/$pkgname-$version.tar.gz" checksum=42f9e5fb8f6c52e63a98a43b81bd281c227c529f194913e1c51ec48a393b6688 diff --git a/srcpkgs/bridge-utils/update b/srcpkgs/bridge-utils/update new file mode 100644 index 0000000000..1b310388c4 --- /dev/null +++ b/srcpkgs/bridge-utils/update @@ -0,0 +1,2 @@ +pkgname="bridge" +pattern="bridge-utils-\K[\d.]+" diff --git a/srcpkgs/btrfs-progs/template b/srcpkgs/btrfs-progs/template index d43e373650..003534dea0 100644 --- a/srcpkgs/btrfs-progs/template +++ b/srcpkgs/btrfs-progs/template @@ -11,8 +11,6 @@ short_desc="Btrfs filesystem utilities" maintainer="Juan RP " license="GPL-2" homepage="http://btrfs.wiki.kernel.org/" -update_pattern=$pkgname' \K[\d+.]+(?= \()' -update_version="${_distver}" do_fetch() { git clone -b v${_distver} git://git.kernel.org/pub/scm/linux/kernel/git/kdave/${pkgname}.git ${pkgname}-${version} diff --git a/srcpkgs/btrfs-progs/update b/srcpkgs/btrfs-progs/update new file mode 100644 index 0000000000..d19a19c5dd --- /dev/null +++ b/srcpkgs/btrfs-progs/update @@ -0,0 +1,2 @@ +pattern=$pkgname' \K[\d+.]+(?= \()' +version="${_distver}" diff --git a/srcpkgs/bullet/template b/srcpkgs/bullet/template index 4cbc3b75a7..e36c7ddeb6 100644 --- a/srcpkgs/bullet/template +++ b/srcpkgs/bullet/template @@ -13,7 +13,6 @@ short_desc="A 3D Collision Detection and Rigid Body Dynamics Library" maintainer="Juan RP " license="zlib" homepage="http://www.bulletphysics.com/Bullet/" -update_pattern='bullet-\K[\d.]+-r\d+' distfiles="http://bullet.googlecode.com/files/${pkgname}-${_distver}-${_revver}.tgz" checksum=67e4c9eb76f7adf99501d726d8ad5e9b525dfd0843fbce9ca73aaca4ba9eced2 diff --git a/srcpkgs/bullet/update b/srcpkgs/bullet/update new file mode 100644 index 0000000000..02cae4cb46 --- /dev/null +++ b/srcpkgs/bullet/update @@ -0,0 +1 @@ +pattern='bullet-\K[\d.]+-r\d+' diff --git a/srcpkgs/bumblebee/template b/srcpkgs/bumblebee/template index 245cbc2606..1a6ba2434c 100644 --- a/srcpkgs/bumblebee/template +++ b/srcpkgs/bumblebee/template @@ -21,7 +21,6 @@ system_groups="bumblebee" short_desc="NVIDIA Optimus support for Linux through VirtualGL" maintainer="Juan RP " homepage="http://www.bumblebee-project.org/" -update_site="http://www.bumblebee-project.org/install.html" license="GPL-3" distfiles="http://www.bumblebee-project.org/${pkgname}-${version}.tar.gz" checksum=1018703b07e2f607a4641249d69478ce076ae5a1e9dd6cff5694d394fa7ee30e diff --git a/srcpkgs/bumblebee/update b/srcpkgs/bumblebee/update new file mode 100644 index 0000000000..0d44a936bd --- /dev/null +++ b/srcpkgs/bumblebee/update @@ -0,0 +1 @@ +site="http://www.bumblebee-project.org/install.html" diff --git a/srcpkgs/bzip2/template b/srcpkgs/bzip2/template index 407d26fe71..a8f6a56c7e 100644 --- a/srcpkgs/bzip2/template +++ b/srcpkgs/bzip2/template @@ -5,7 +5,6 @@ revision=9 bootstrap=yes replaces="chroot-bzip2>=0" homepage="http://www.bzip.org" -update_site="http://www.bzip.org/downloads.html" distfiles="http://www.bzip.org/$version/$pkgname-$version.tar.gz" short_desc="The bzip2 compression library" license="BSD" diff --git a/srcpkgs/bzip2/update b/srcpkgs/bzip2/update new file mode 100644 index 0000000000..de9a4df918 --- /dev/null +++ b/srcpkgs/bzip2/update @@ -0,0 +1 @@ +site="http://www.bzip.org/downloads.html" diff --git a/srcpkgs/bzr/template b/srcpkgs/bzr/template index 42bd098d28..ac519fa66f 100644 --- a/srcpkgs/bzr/template +++ b/srcpkgs/bzr/template @@ -11,7 +11,6 @@ short_desc="Distributed version control system that Just Works" maintainer="Juan RP " license="GPL-2" homepage="http://bazaar.canonical.com" -update_ignore="*b*" distfiles="http://launchpad.net/bzr/2.6/$version/+download/bzr-$version.tar.gz" checksum=0994797182eb828867eee81cccc79480bd2946c99304266bc427b902cf91dab0 diff --git a/srcpkgs/bzr/update b/srcpkgs/bzr/update new file mode 100644 index 0000000000..e9b0a0a5ea --- /dev/null +++ b/srcpkgs/bzr/update @@ -0,0 +1 @@ +ignore="*b*" diff --git a/srcpkgs/catalyst/template b/srcpkgs/catalyst/template index 16d5f5610f..e582664407 100644 --- a/srcpkgs/catalyst/template +++ b/srcpkgs/catalyst/template @@ -22,7 +22,6 @@ build_wrksrc="fglrx-${version}" XBPS_FETCH_CMD="wget --referer='http://support.amd.com/en-us/download/desktop?os=Linux+x86' " -update_pkgname="amd-catalyst-omega" distfiles="http://www2.ati.com/drivers/linux/amd-catalyst-omega-${_distver}-linux-run-installers.zip" checksum=68669836f20ad4351e08b13c5766c6b2ffc6b8cd2a37e9baf55779da32d3a249 diff --git a/srcpkgs/catalyst/update b/srcpkgs/catalyst/update new file mode 100644 index 0000000000..4adf54e2a7 --- /dev/null +++ b/srcpkgs/catalyst/update @@ -0,0 +1 @@ +pkgname="amd-catalyst-omega" diff --git a/srcpkgs/cdparanoia/template b/srcpkgs/cdparanoia/template index ad6962a3e5..fe92d7db17 100644 --- a/srcpkgs/cdparanoia/template +++ b/srcpkgs/cdparanoia/template @@ -7,8 +7,6 @@ hostmakedepends="libtool automake" build_style=gnu-configure short_desc="CDDA reading utility with extra data verification features" homepage="https://www.xiph.org/paranoia/" -update_pkgname="cdparanoia-III" -update_ignore="alpha* *pre*" license="GPL-2" maintainer="Juan RP " distfiles="http://downloads.xiph.org/releases/$pkgname/$pkgname-III-$version.src.tgz" diff --git a/srcpkgs/cdparanoia/update b/srcpkgs/cdparanoia/update new file mode 100644 index 0000000000..c4885dad06 --- /dev/null +++ b/srcpkgs/cdparanoia/update @@ -0,0 +1,2 @@ +pkgname="cdparanoia-III" +ignore="alpha* *pre*" diff --git a/srcpkgs/celestia-glut/template b/srcpkgs/celestia-glut/template index e13303c953..97b48e4a78 100644 --- a/srcpkgs/celestia-glut/template +++ b/srcpkgs/celestia-glut/template @@ -6,8 +6,6 @@ short_desc="free space simulation using GLUT" maintainer="Martin Riese " license="GPL-2" homepage="http://www.shatters.net/celestia/" -update_pkgname="celestia" -update_ignore="103 104 107" distfiles="${SOURCEFORGE_SITE}/celestia/celestia-${version}.tar.gz" checksum="d35570ccb9440fc0bd3e73eb9b4c3e8a4c25f3ae444a13d1175053fa16dc34c4" build_style=gnu-configure diff --git a/srcpkgs/celestia-glut/update b/srcpkgs/celestia-glut/update new file mode 100644 index 0000000000..c812b6e17b --- /dev/null +++ b/srcpkgs/celestia-glut/update @@ -0,0 +1,2 @@ +pkgname="celestia" +ignore="103 104 107" diff --git a/srcpkgs/celestia-gtk/template b/srcpkgs/celestia-gtk/template index 46960ee43d..a5c7f3d1ef 100644 --- a/srcpkgs/celestia-gtk/template +++ b/srcpkgs/celestia-gtk/template @@ -6,8 +6,6 @@ short_desc="free space simulation using GTK" maintainer="Martin Riese " license="GPL-2" homepage="http://www.shatters.net/celestia/" -update_pkgname="celestia" -update_ignore="103 104 107" distfiles="${SOURCEFORGE_SITE}/celestia/celestia-${version}.tar.gz" checksum="d35570ccb9440fc0bd3e73eb9b4c3e8a4c25f3ae444a13d1175053fa16dc34c4" build_style=gnu-configure diff --git a/srcpkgs/celestia-gtk/update b/srcpkgs/celestia-gtk/update new file mode 100644 index 0000000000..c812b6e17b --- /dev/null +++ b/srcpkgs/celestia-gtk/update @@ -0,0 +1,2 @@ +pkgname="celestia" +ignore="103 104 107" diff --git a/srcpkgs/chrony/template b/srcpkgs/chrony/template index b11a0a9fb1..5a37a5f87a 100644 --- a/srcpkgs/chrony/template +++ b/srcpkgs/chrony/template @@ -17,7 +17,6 @@ short_desc="Sets your computer's clock from time servers on the Net" maintainer="Juan RP " license="GPL-2" homepage="http://chrony.tuxfamily.org/" -update_ignore="*oldcvs*" distfiles="http://download.tuxfamily.org/chrony/$pkgname-$version.tar.gz" checksum=a35e1cae46ecbe14af2023bb47a72a03d79591b2ff65f0072b3400153224996d diff --git a/srcpkgs/chrony/update b/srcpkgs/chrony/update new file mode 100644 index 0000000000..4c537fb07f --- /dev/null +++ b/srcpkgs/chrony/update @@ -0,0 +1 @@ +ignore="*oldcvs*" diff --git a/srcpkgs/cinnamon-control-center/template b/srcpkgs/cinnamon-control-center/template index d326d92466..44705ffdaf 100644 --- a/srcpkgs/cinnamon-control-center/template +++ b/srcpkgs/cinnamon-control-center/template @@ -18,8 +18,6 @@ depends="lib${sourcepkg}>=${version}_${revision} GConf cinnamon-settings-daemon maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' build_options="systemd" diff --git a/srcpkgs/cinnamon-control-center/update b/srcpkgs/cinnamon-control-center/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cinnamon-control-center/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cinnamon-desktop/template b/srcpkgs/cinnamon-desktop/template index 43b327e163..c0541121ac 100644 --- a/srcpkgs/cinnamon-desktop/template +++ b/srcpkgs/cinnamon-desktop/template @@ -12,8 +12,6 @@ depends="xkeyboard-config" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' do_fetch() { git clone -b ${version} git://github.com/linuxmint/${pkgname} ${pkgname}-${version} diff --git a/srcpkgs/cinnamon-desktop/update b/srcpkgs/cinnamon-desktop/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cinnamon-desktop/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cinnamon-menus/template b/srcpkgs/cinnamon-menus/template index 19be91bebe..c725c73376 100644 --- a/srcpkgs/cinnamon-menus/template +++ b/srcpkgs/cinnamon-menus/template @@ -10,8 +10,6 @@ makedepends="glib-devel gnome-common gobject-introspection" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' do_fetch() { git clone -b ${version} git://github.com/linuxmint/${pkgname} ${pkgname}-${version} diff --git a/srcpkgs/cinnamon-menus/update b/srcpkgs/cinnamon-menus/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cinnamon-menus/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cinnamon-screensaver/template b/srcpkgs/cinnamon-screensaver/template index e1deef3ec5..b221369172 100644 --- a/srcpkgs/cinnamon-screensaver/template +++ b/srcpkgs/cinnamon-screensaver/template @@ -16,8 +16,6 @@ conf_files="/etc/pam.d/${pkgname}" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' build_options="systemd" diff --git a/srcpkgs/cinnamon-screensaver/update b/srcpkgs/cinnamon-screensaver/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cinnamon-screensaver/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cinnamon-session/template b/srcpkgs/cinnamon-session/template index 6c907958b9..7e54e7b669 100644 --- a/srcpkgs/cinnamon-session/template +++ b/srcpkgs/cinnamon-session/template @@ -15,8 +15,6 @@ depends="cinnamon-desktop desktop-file-utils hicolor-icon-theme" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' build_options="systemd" diff --git a/srcpkgs/cinnamon-session/update b/srcpkgs/cinnamon-session/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cinnamon-session/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cinnamon-settings-daemon/template b/srcpkgs/cinnamon-settings-daemon/template index b4eb66ec73..79b0ec8414 100644 --- a/srcpkgs/cinnamon-settings-daemon/template +++ b/srcpkgs/cinnamon-settings-daemon/template @@ -17,8 +17,6 @@ depends="desktop-file-utils hicolor-icon-theme" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' build_options="systemd" diff --git a/srcpkgs/cinnamon-settings-daemon/update b/srcpkgs/cinnamon-settings-daemon/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cinnamon-settings-daemon/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cinnamon-translations/template b/srcpkgs/cinnamon-translations/template index 8a4adae2c1..a844c48d0d 100644 --- a/srcpkgs/cinnamon-translations/template +++ b/srcpkgs/cinnamon-translations/template @@ -8,8 +8,6 @@ short_desc="Translations for Cinnamon and Nemo" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' do_fetch() { git clone -b ${version} git://github.com/linuxmint/${pkgname} ${pkgname}-${version} diff --git a/srcpkgs/cinnamon-translations/update b/srcpkgs/cinnamon-translations/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cinnamon-translations/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cinnamon/template b/srcpkgs/cinnamon/template index d6e1fffb7b..7e0a7b3300 100644 --- a/srcpkgs/cinnamon/template +++ b/srcpkgs/cinnamon/template @@ -22,8 +22,6 @@ depends=" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/Cinnamon/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' do_fetch() { git clone -b ${version} git://github.com/linuxmint/Cinnamon ${pkgname}-${version} diff --git a/srcpkgs/cinnamon/update b/srcpkgs/cinnamon/update new file mode 100644 index 0000000000..c90e52ff72 --- /dev/null +++ b/srcpkgs/cinnamon/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/Cinnamon/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cjs/template b/srcpkgs/cjs/template index 5b8f299bb0..4e61b14a1b 100644 --- a/srcpkgs/cjs/template +++ b/srcpkgs/cjs/template @@ -10,8 +10,6 @@ makedepends="js-devel dbus-glib-devel readline-devel>=6.3" maintainer="Juan RP " license="GPL-3" homepage="http://cinnamon.linuxmint.com/" -update_site="https://api.github.com/repos/linuxmint/$pkgname/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' do_fetch() { git clone -b ${version} git://github.com/linuxmint/${pkgname} ${pkgname}-${version} diff --git a/srcpkgs/cjs/update b/srcpkgs/cjs/update new file mode 100644 index 0000000000..97b9b492e3 --- /dev/null +++ b/srcpkgs/cjs/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/linuxmint/$pkgname/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/clutter/template b/srcpkgs/clutter/template index bfe50b17ed..04b0dde9af 100644 --- a/srcpkgs/clutter/template +++ b/srcpkgs/clutter/template @@ -18,8 +18,6 @@ homepage="http://www.clutter-project.org" license="LGPL-2.1" distfiles="${GNOME_SITE}/clutter/${version%.*}/clutter-${version}.tar.xz" checksum=cc940809e6e1469ce349c4bddb0cbcc2c13c087d4fc15cda9278d855ee2d1293 -update_site="${GNOME_SITE}/$pkgname/cache.json" -update_ignore="1.*[13579].*" if [ -z "$CROSS_BUILD" ]; then build_options_default="gir" diff --git a/srcpkgs/clutter/update b/srcpkgs/clutter/update new file mode 100644 index 0000000000..0980963f6d --- /dev/null +++ b/srcpkgs/clutter/update @@ -0,0 +1,2 @@ +site="${GNOME_SITE}/$pkgname/cache.json" +ignore="1.*[13579].*" diff --git a/srcpkgs/cmake-gui/template b/srcpkgs/cmake-gui/template index 12a50b6fdf..3364405686 100644 --- a/srcpkgs/cmake-gui/template +++ b/srcpkgs/cmake-gui/template @@ -13,7 +13,6 @@ short_desc="Cross-platform, open-source build system - QT GUI" maintainer="Juan RP " license="LGPL-2.1, 3-clause-BSD" homepage="http://www.cmake.org" -update_pkgname="cmake" distfiles="http://www.cmake.org/files/v${version%.*}/cmake-$version.tar.gz" checksum=6b4ea61eadbbd9bec0ccb383c29d1f4496eacc121ef7acf37c7a24777805693e diff --git a/srcpkgs/cmake-gui/update b/srcpkgs/cmake-gui/update new file mode 100644 index 0000000000..c197b0528f --- /dev/null +++ b/srcpkgs/cmake-gui/update @@ -0,0 +1 @@ +pkgname="cmake" diff --git a/srcpkgs/conky-cli/template b/srcpkgs/conky-cli/template index 33cfa53d05..5560487f06 100644 --- a/srcpkgs/conky-cli/template +++ b/srcpkgs/conky-cli/template @@ -16,7 +16,6 @@ short_desc="Conky command line without X11" maintainer="Ypnose " license="BSD, GPL" homepage="http://conky.sourceforge.net/" -update_pkgname="conky" distfiles="${SOURCEFORGE_SITE}/${pkgname/-cli/}/${pkgname/-cli/}-${version}.tar.gz" checksum=1de754d77b2671f68795fdb9fc506328a1668dd6ca00984c3f49790a66d368ca diff --git a/srcpkgs/conky-cli/update b/srcpkgs/conky-cli/update new file mode 100644 index 0000000000..364b23e045 --- /dev/null +++ b/srcpkgs/conky-cli/update @@ -0,0 +1 @@ +pkgname="conky" diff --git a/srcpkgs/cppcheck/template b/srcpkgs/cppcheck/template index 37ba0a4416..085115ff4b 100644 --- a/srcpkgs/cppcheck/template +++ b/srcpkgs/cppcheck/template @@ -7,8 +7,6 @@ short_desc="Static analysis of C/C++ code" maintainer="Juan RP " license="GPL-2" homepage="http://cppcheck.sourceforge.net" -update_site="https://api.github.com/repos/danmar/cppcheck/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' do_fetch() { git clone -b ${version} git://github.com/danmar/cppcheck ${pkgname}-${version} diff --git a/srcpkgs/cppcheck/update b/srcpkgs/cppcheck/update new file mode 100644 index 0000000000..c46458e13a --- /dev/null +++ b/srcpkgs/cppcheck/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/danmar/cppcheck/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/cpuburn/template b/srcpkgs/cpuburn/template index 0e882ac26b..d4f201877c 100644 --- a/srcpkgs/cpuburn/template +++ b/srcpkgs/cpuburn/template @@ -7,8 +7,6 @@ short_desc="Collection of programs to put heavy load on CPU" maintainer="Christian Neukirchen " license="GPL-2" homepage="https://launchpad.net/ubuntu/+source/cpuburn/" -update_site="https://launchpad.net/ubuntu/+source/cpuburn/" -update_pattern='cpuburn/\K[\d.]+\d+' distfiles="https://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${version}.orig.tar.gz" checksum=eb191ce9bfbf453d30c218c3419573df102a3588f96c4a43686c84bb9da4bed6 diff --git a/srcpkgs/cpuburn/update b/srcpkgs/cpuburn/update new file mode 100644 index 0000000000..ceaf1a4ef9 --- /dev/null +++ b/srcpkgs/cpuburn/update @@ -0,0 +1,2 @@ +site="https://launchpad.net/ubuntu/+source/cpuburn/" +pattern='cpuburn/\K[\d.]+\d+' diff --git a/srcpkgs/cracklib/template b/srcpkgs/cracklib/template index 31f5fe1429..e6dc09feec 100644 --- a/srcpkgs/cracklib/template +++ b/srcpkgs/cracklib/template @@ -12,7 +12,6 @@ short_desc="Password Checking Library" maintainer="Juan RP " license="LGPL-2.1" homepage="http://cracklib.sourceforge.net/" -update_ignore="*pre*" distfiles=" ${SOURCEFORGE_SITE}/cracklib/${pkgname}-${version}.tar.gz ${SOURCEFORGE_SITE}/cracklib/${pkgname}-words-1.2.gz" diff --git a/srcpkgs/cracklib/update b/srcpkgs/cracklib/update new file mode 100644 index 0000000000..8758aff9cb --- /dev/null +++ b/srcpkgs/cracklib/update @@ -0,0 +1 @@ +ignore="*pre*" diff --git a/srcpkgs/crypto++/template b/srcpkgs/crypto++/template index df12f31e02..9c778406f6 100644 --- a/srcpkgs/crypto++/template +++ b/srcpkgs/crypto++/template @@ -8,7 +8,6 @@ short_desc="A free C++ class library of cryptographic schemes" maintainer="Juan RP " homepage="http://www.cryptopp.com/" license="Boost Software License 1.0, Public domain" -update_pkgname=cryptopp distfiles="http://www.cryptopp.com/cryptopp${version}.zip" checksum=5cbfd2fcb4a6b3aab35902e2e0f3b59d9171fee12b3fc2b363e1801dfec53574 diff --git a/srcpkgs/crypto++/update b/srcpkgs/crypto++/update new file mode 100644 index 0000000000..947c5e1eb6 --- /dev/null +++ b/srcpkgs/crypto++/update @@ -0,0 +1 @@ +pkgname=cryptopp diff --git a/srcpkgs/cvs2svn/template b/srcpkgs/cvs2svn/template index bb426958f2..233dad840f 100644 --- a/srcpkgs/cvs2svn/template +++ b/srcpkgs/cvs2svn/template @@ -10,7 +10,6 @@ depends="cvs python" short_desc="CVS to Subversion, git and bazaar repository conversion tool" maintainer="Juan RP " homepage="http://cvs2svn.tigris.org/" -update_site="http://cvs2svn.tigris.org/servlets/ProjectDocumentList?folderID=2976" license="BSD" distfiles="http://cvs2svn.tigris.org/files/documents/1462/49237/cvs2svn-${version}.tar.gz" checksum=a6677fc3e7b4374020185c61c998209d691de0c1b01b53e59341057459f6f116 diff --git a/srcpkgs/cvs2svn/update b/srcpkgs/cvs2svn/update new file mode 100644 index 0000000000..d8edb80d8d --- /dev/null +++ b/srcpkgs/cvs2svn/update @@ -0,0 +1 @@ +site="http://cvs2svn.tigris.org/servlets/ProjectDocumentList?folderID=2976" diff --git a/srcpkgs/cvsps2/template b/srcpkgs/cvsps2/template index aaaae9de7a..66a35d3bb0 100644 --- a/srcpkgs/cvsps2/template +++ b/srcpkgs/cvsps2/template @@ -9,8 +9,6 @@ short_desc="Generating 'patchsets' from a CVS repo (for git-cvsimport)" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://www.cobite.com/cvsps/" -update_pattern='cvsps-\K[\d.]+\d+b?\d*' -update_ignore="*b*" distfiles="http://www.cobite.com/cvsps/cvsps-${version}.tar.gz" checksum=91d3198b33463861a581686d5fcf99a5c484e7c4d819384c04fda9cafec1075a diff --git a/srcpkgs/cvsps2/update b/srcpkgs/cvsps2/update new file mode 100644 index 0000000000..3b79ae0d54 --- /dev/null +++ b/srcpkgs/cvsps2/update @@ -0,0 +1,2 @@ +pattern='cvsps-\K[\d.]+\d+b?\d*' +ignore="*b*" diff --git a/srcpkgs/darktable/template b/srcpkgs/darktable/template index 7de7098425..8aead0f451 100644 --- a/srcpkgs/darktable/template +++ b/srcpkgs/darktable/template @@ -7,7 +7,6 @@ build_style=cmake configure_args="-DBINARY_PACKAGE_BUILD=ON" maintainer="lemmi " homepage="http://www.darktable.org/" -update_ignore="*%7E*" license="GPL-3" short_desc="Virtual lighttable and darkroom for photographers" hostmakedepends="cmake pkg-config intltool" diff --git a/srcpkgs/darktable/update b/srcpkgs/darktable/update new file mode 100644 index 0000000000..00971f6ba1 --- /dev/null +++ b/srcpkgs/darktable/update @@ -0,0 +1 @@ +ignore="*%7E*" diff --git a/srcpkgs/dash/template b/srcpkgs/dash/template index 9c2993f40e..5c44fd9189 100644 --- a/srcpkgs/dash/template +++ b/srcpkgs/dash/template @@ -8,7 +8,6 @@ register_shell="/bin/sh" short_desc="POSIX-compliant Unix shell, much smaller than GNU bash" maintainer="Juan RP " homepage="http://gondor.apana.org.au/~herbert/dash/" -update_ignore="*md5sum*" license="BSD" distfiles="http://gondor.apana.org.au/~herbert/dash/files/$pkgname-$version.tar.gz" checksum=c6db3a237747b02d20382a761397563d813b306c020ae28ce25a1c3915fac60f diff --git a/srcpkgs/dash/update b/srcpkgs/dash/update new file mode 100644 index 0000000000..28b3125b93 --- /dev/null +++ b/srcpkgs/dash/update @@ -0,0 +1 @@ +ignore="*md5sum*" diff --git a/srcpkgs/db/template b/srcpkgs/db/template index 0dfd59ce1f..79ef58831c 100644 --- a/srcpkgs/db/template +++ b/srcpkgs/db/template @@ -11,8 +11,6 @@ make_build_args="LIBSO_LIBS=-lpthread" short_desc="The Berkeley DB embedded database system" maintainer="Juan RP " homepage="http://www.oracle.com/technetwork/products/berkeleydb/overview/index.html" -update_site="http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index-082944.html" -update_ignore="6.* *NC" license="BSD" distfiles="http://download.oracle.com/berkeley-db/db-${version}.tar.gz" checksum=e0a992d740709892e81f9d93f06daf305cf73fb81b545afe72478043172c3628 diff --git a/srcpkgs/db/update b/srcpkgs/db/update new file mode 100644 index 0000000000..c0f0d7465f --- /dev/null +++ b/srcpkgs/db/update @@ -0,0 +1,2 @@ +site="http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index-082944.html" +ignore="6.* *NC" diff --git a/srcpkgs/dbus/template b/srcpkgs/dbus/template index 3ba7e9b0f4..d756ad2191 100644 --- a/srcpkgs/dbus/template +++ b/srcpkgs/dbus/template @@ -8,7 +8,6 @@ maintainer="Juan RP " license="GPL-2" homepage="http://dbus.freedesktop.org/" distfiles="${homepage}/releases/dbus/dbus-${version}.tar.gz" -update_ignore="*.[13579].*" checksum=83425250a6a4c93b9ab4a349771a7700e8ddff2d73a5a088222ca47ae9ce1f1a create_wrksrc=yes diff --git a/srcpkgs/dbus/update b/srcpkgs/dbus/update new file mode 100644 index 0000000000..f2f6f0fbdd --- /dev/null +++ b/srcpkgs/dbus/update @@ -0,0 +1 @@ +ignore="*.[13579].*" diff --git a/srcpkgs/debootstrap/template b/srcpkgs/debootstrap/template index a907d2740d..8969d63e86 100644 --- a/srcpkgs/debootstrap/template +++ b/srcpkgs/debootstrap/template @@ -8,7 +8,6 @@ short_desc="Bootstrap a basic Debian system" maintainer="Christian Neukirchen " license="custom" homepage="http://packages.qa.debian.org/d/debootstrap.html" -update_ignore="*~*" distfiles="${DEBIAN_SITE}/main/d/${pkgname}/${pkgname}_${version}_all.deb ${DEBIAN_SITE}/main/d/debian-archive-keyring/debian-archive-keyring_2014.3_all.deb" checksum="60ea5fbab57d5e9d6140ae5f7fa228717d960a4f9780d5762010ba49716d4bed diff --git a/srcpkgs/debootstrap/update b/srcpkgs/debootstrap/update new file mode 100644 index 0000000000..9b6b8246dc --- /dev/null +++ b/srcpkgs/debootstrap/update @@ -0,0 +1 @@ +ignore="*~*" diff --git a/srcpkgs/dev86/template b/srcpkgs/dev86/template index ed1e506c7a..f6bc844671 100644 --- a/srcpkgs/dev86/template +++ b/srcpkgs/dev86/template @@ -9,7 +9,6 @@ short_desc="8086 cross development compiler, assembler and linker" license="GPL+, GPL-2+, LGPL-2+" maintainer="Juan RP " homepage="http://v3.sk/~lkundrak/dev86/" -update_pkgname=Dev86src distfiles="${homepage}/Dev86src-$version.tar.gz" checksum=234b110e6df9b7f6843e2ee53473127c2211243a16748f229fc0127845f68d94 only_for_archs="i686 x86_64" diff --git a/srcpkgs/dev86/update b/srcpkgs/dev86/update new file mode 100644 index 0000000000..5d2b715320 --- /dev/null +++ b/srcpkgs/dev86/update @@ -0,0 +1 @@ +pkgname=Dev86src diff --git a/srcpkgs/dialog/template b/srcpkgs/dialog/template index 74a29bca94..a72ba86b67 100644 --- a/srcpkgs/dialog/template +++ b/srcpkgs/dialog/template @@ -12,7 +12,6 @@ short_desc="A tool to display dialog boxes from shell scripts" maintainer="Juan RP " license="LGPL-2.1" homepage="http://invisible-island.net/dialog/" -update_pattern="dialog-\K[\d.-]+(?=.tgz)" distfiles="ftp://invisible-island.net/${pkgname}/${pkgname}-${_distver}-${_date}.tgz" checksum=d054766fba3dac828851f1c9852e5992eb824fd0a0dd26d87ee517242027bafc diff --git a/srcpkgs/dialog/update b/srcpkgs/dialog/update new file mode 100644 index 0000000000..a69ae0da8a --- /dev/null +++ b/srcpkgs/dialog/update @@ -0,0 +1 @@ +pattern="dialog-\K[\d.-]+(?=.tgz)" diff --git a/srcpkgs/dmraid/template b/srcpkgs/dmraid/template index 6ed5511686..2a6b80313c 100644 --- a/srcpkgs/dmraid/template +++ b/srcpkgs/dmraid/template @@ -14,7 +14,6 @@ short_desc="Device mapper RAID interface" maintainer="Juan RP " license="GPL-2, LGPL-2.1" homepage="http://people.redhat.com/~heinzm/sw/dmraid/" -update_pattern='dmraid-\K[\d.rc-]+(?=\.tar.bz2)' distfiles="${homepage}/src/dmraid-${_distver}-${_patchver}.tar.bz2" checksum=93421bd169d71ff5e7d2db95b62b030bfa205a12010b6468dcdef80337d6fbd8 diff --git a/srcpkgs/dmraid/update b/srcpkgs/dmraid/update new file mode 100644 index 0000000000..c6be1a3c9a --- /dev/null +++ b/srcpkgs/dmraid/update @@ -0,0 +1 @@ +pattern='dmraid-\K[\d.rc-]+(?=\.tar.bz2)' diff --git a/srcpkgs/docbook-dsssl/template b/srcpkgs/docbook-dsssl/template index e76c9fd232..5ae4e5e2bc 100644 --- a/srcpkgs/docbook-dsssl/template +++ b/srcpkgs/docbook-dsssl/template @@ -9,7 +9,6 @@ sgml_entries="CATALOG /usr/share/sgml/docbook/dsssl/modular/catalog --" short_desc="DSSSL stylesheets for the DocBook DTD" maintainer="Juan RP " homepage="http://www.docbook.org/" -update_site="http://sourceforge.net/projects/docbook/rss?limit=2000" license="MIT" distfiles="${SOURCEFORGE_SITE}/docbook/$pkgname-$version.tar.bz2" checksum=2f329e120bee9ef42fbdd74ddd60e05e49786c5a7953a0ff4c680ae6bdf0e2bc diff --git a/srcpkgs/docbook-dsssl/update b/srcpkgs/docbook-dsssl/update new file mode 100644 index 0000000000..5d0c1834d7 --- /dev/null +++ b/srcpkgs/docbook-dsssl/update @@ -0,0 +1 @@ +site="http://sourceforge.net/projects/docbook/rss?limit=2000" diff --git a/srcpkgs/docker/template b/srcpkgs/docker/template index 0103c82a3a..0881112669 100644 --- a/srcpkgs/docker/template +++ b/srcpkgs/docker/template @@ -8,8 +8,6 @@ short_desc="Easily create lightweight, portable, self-sufficient containers from maintainer="Juan RP " license="Apache-2.0" homepage="http://www.docker.io" -update_site="https://api.github.com/repos/$pkgname/$pkgname/tags" -update_pattern='"name":\s*"v\K[^\d]*([\d\.]+)(?=")' system_groups="docker" # These are required at run-time. diff --git a/srcpkgs/docker/update b/srcpkgs/docker/update new file mode 100644 index 0000000000..48b95b1bb8 --- /dev/null +++ b/srcpkgs/docker/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/$pkgname/$pkgname/tags" +pattern='"name":\s*"v\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/dolphin-emu/template b/srcpkgs/dolphin-emu/template index 366a266c22..4deb2bdfd5 100644 --- a/srcpkgs/dolphin-emu/template +++ b/srcpkgs/dolphin-emu/template @@ -21,8 +21,6 @@ short_desc="A Gamecube / Wii / Triforce emulator" maintainer="Juan RP " license="GPL-2" homepage="http://dolphin-emu.org" -update_site="https://api.github.com/repos/dolphin-emu/dolphin/tags" -update_pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' distfiles="https://github.com/dolphin-emu/dolphin/archive/${version}.tar.gz" checksum=09f10f73abe0a7b5d10a51b3b56dc0044331bb12d6a18fe969c9bbd83a9b1129 diff --git a/srcpkgs/dolphin-emu/update b/srcpkgs/dolphin-emu/update new file mode 100644 index 0000000000..22f6762b02 --- /dev/null +++ b/srcpkgs/dolphin-emu/update @@ -0,0 +1,2 @@ +site="https://api.github.com/repos/dolphin-emu/dolphin/tags" +pattern='"name":\s*"\K[^\d]*([\d\.]+)(?=")' diff --git a/srcpkgs/doxygen/template b/srcpkgs/doxygen/template index 1f800d7809..7a8abb4ef4 100644 --- a/srcpkgs/doxygen/template +++ b/srcpkgs/doxygen/template @@ -8,8 +8,6 @@ maintainer="Juan RP " homepage="http://www.doxygen.org/" license="GPL-2" distfiles="http://ftp.stack.nl/pub/users/dimitri/${pkgname}-${version}.src.tar.gz" -update_site="http://www.stack.nl/~dimitri/doxygen/download.html" -update_ignore="*.bin" checksum=d4ab6e28d4d45d8956cad17470aade3fbe2356e8f64b92167e738c1887feccec if [ -z "$CROSS_BUILD" ]; then diff --git a/srcpkgs/doxygen/update b/srcpkgs/doxygen/update new file mode 100644 index 0000000000..92a51cd0cc --- /dev/null +++ b/srcpkgs/doxygen/update @@ -0,0 +1,2 @@ +site="http://www.stack.nl/~dimitri/doxygen/download.html" +ignore="*.bin" diff --git a/srcpkgs/dsh/template b/srcpkgs/dsh/template index 23c8e71709..af67c07f31 100644 --- a/srcpkgs/dsh/template +++ b/srcpkgs/dsh/template @@ -8,7 +8,6 @@ short_desc="Wrapper for executing multiple remote shell (rsh/remsh/ssh) commands maintainer="Enno Boland " license="GPL-2" homepage="http://www.netfort.gr.jp/~dancer/software/dsh.html.en" -update_ignore="2.0.1" makedepends="libdshconfig-devel>=0.20.13_2" distfiles="http://www.netfort.gr.jp/~dancer/software/downloads/$pkgname-$version.tar.gz" checksum=520031a5474c25c6b3f9a0840e06a4fea4750734043ab06342522f533fa5b4d0 diff --git a/srcpkgs/dsh/update b/srcpkgs/dsh/update new file mode 100644 index 0000000000..cbc31bb198 --- /dev/null +++ b/srcpkgs/dsh/update @@ -0,0 +1 @@ +ignore="2.0.1" diff --git a/srcpkgs/duplicity/template b/srcpkgs/duplicity/template index 31a8de2200..1d63efcea7 100644 --- a/srcpkgs/duplicity/template +++ b/srcpkgs/duplicity/template @@ -11,7 +11,6 @@ short_desc="Encrypted bandwidth-efficient backup using the rsync algorithm" homepage="http://duplicity.nongnu.org/" license="GPL-2" maintainer="Steven R " -update_ignore="0.7.*" distfiles="http://code.launchpad.net/duplicity/${version%.*}-series/${version}/+download/duplicity-${version}.tar.gz" checksum=ac44f44abc1c5fe775a49b77e722d238c0b3bbb105e083fd505e2dca8e2c1725 diff --git a/srcpkgs/duplicity/update b/srcpkgs/duplicity/update new file mode 100644 index 0000000000..6e42c66151 --- /dev/null +++ b/srcpkgs/duplicity/update @@ -0,0 +1 @@ +ignore="0.7.*" diff --git a/srcpkgs/eclipse-ecj/template b/srcpkgs/eclipse-ecj/template index a691bca5e0..01932d4926 100644 --- a/srcpkgs/eclipse-ecj/template +++ b/srcpkgs/eclipse-ecj/template @@ -9,7 +9,6 @@ maintainer="Juan RP " license="EPL" homepage="http://gcc.gnu.org/java/" checksum=9506e75b862f782213df61af67338eb7a23c35ff425d328affc65585477d34cd -update_pkgname=ecj distfiles="http://mirrors.kernel.org/sources.redhat.com/java/ecj-${version}.jar" do_install() { diff --git a/srcpkgs/eclipse-ecj/update b/srcpkgs/eclipse-ecj/update new file mode 100644 index 0000000000..c9c5f7bf97 --- /dev/null +++ b/srcpkgs/eclipse-ecj/update @@ -0,0 +1 @@ +pkgname=ecj diff --git a/srcpkgs/eclipse/template b/srcpkgs/eclipse/template index 244312a6ff..db2b8916fa 100644 --- a/srcpkgs/eclipse/template +++ b/srcpkgs/eclipse/template @@ -8,8 +8,6 @@ short_desc="An IDE for Java and other languages" maintainer="Juan RP " license="EPL" homepage="http://eclipse.org" -update_site="http://www.eclipse.org/downloads" -update_pattern='\(\K[\d.]+(?=\) Release)' only_for_archs="i686 x86_64" _release=luna-SR1 diff --git a/srcpkgs/eclipse/update b/srcpkgs/eclipse/update new file mode 100644 index 0000000000..234208472b --- /dev/null +++ b/srcpkgs/eclipse/update @@ -0,0 +1,2 @@ +site="http://www.eclipse.org/downloads" +pattern='\(\K[\d.]+(?=\) Release)' diff --git a/srcpkgs/encfs/template b/srcpkgs/encfs/template index ea759fe331..42af692471 100644 --- a/srcpkgs/encfs/template +++ b/srcpkgs/encfs/template @@ -9,6 +9,5 @@ short_desc="Encrypted filesystem in user-space" maintainer="Juan RP " license="GPL-3" homepage="http://www.arg0.net/encfs" -update_site="https://sites.google.com/a/arg0.net/www/encfs" distfiles="http://encfs.googlecode.com/files/${pkgname}-${version}.tgz" checksum=282ef0f04f2dd7ba3527b45621fab485b7cc510c2ceee116600d0348dc2170a8 diff --git a/srcpkgs/encfs/update b/srcpkgs/encfs/update new file mode 100644 index 0000000000..5c3978072e --- /dev/null +++ b/srcpkgs/encfs/update @@ -0,0 +1 @@ +site="https://sites.google.com/a/arg0.net/www/encfs" diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template index 0ee96edc38..89369b443e 100644 --- a/srcpkgs/erlang/template +++ b/srcpkgs/erlang/template @@ -12,8 +12,6 @@ short_desc="Concurrent functional programming language developed by Ericsson" maintainer="Christian Neukirchen " license="custom" homepage="http://www.erlang.org/" -update_site="http://www.erlang.org/download.html" -update_pattern='otp_src_\K[\d.]+\d+' distfiles="http://www.erlang.org/download/otp_src_${version}.tar.gz http://www.erlang.org/download/otp_doc_man_${version}.tar.gz" checksum="0d82eda6ae7ac6f0f860093324e540fa514497068ec3b4177800284e8c761f56 diff --git a/srcpkgs/erlang/update b/srcpkgs/erlang/update new file mode 100644 index 0000000000..b2254921c6 --- /dev/null +++ b/srcpkgs/erlang/update @@ -0,0 +1,2 @@ +site="http://www.erlang.org/download.html" +pattern='otp_src_\K[\d.]+\d+' diff --git a/srcpkgs/ettercap/template b/srcpkgs/ettercap/template index 71695ed62f..b75adf184b 100644 --- a/srcpkgs/ettercap/template +++ b/srcpkgs/ettercap/template @@ -12,7 +12,6 @@ short_desc="A network sniffer/interceptor/logger for ethernet LANs" maintainer="Juan RP " license="GPL-2" homepage="http://ettercap.github.com/ettercap/" -update_site="http://ettercap.github.io/ettercap/downloads.html" LDFLAGS="-Wl,--no-as-needed -ldl" diff --git a/srcpkgs/ettercap/update b/srcpkgs/ettercap/update new file mode 100644 index 0000000000..d4b5bb97d7 --- /dev/null +++ b/srcpkgs/ettercap/update @@ -0,0 +1 @@ +site="http://ettercap.github.io/ettercap/downloads.html" diff --git a/srcpkgs/evolution-data-server/template b/srcpkgs/evolution-data-server/template index 5b3200984c..0cc796f7fb 100644 --- a/srcpkgs/evolution-data-server/template +++ b/srcpkgs/evolution-data-server/template @@ -17,8 +17,6 @@ license="GPL-2" homepage="http://www.gnome.org" distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz" checksum=52466d16487474787f879b57f0b2de2aad0554e5c5161b366a597fc522ce673d -update_site="${GNOME_SITE}/$pkgname/cache.json" -update_ignore="3.*[13579].*" post_install() { # Fix broken pkg-config diff --git a/srcpkgs/evolution-data-server/update b/srcpkgs/evolution-data-server/update new file mode 100644 index 0000000000..a84fbbad8b --- /dev/null +++ b/srcpkgs/evolution-data-server/update @@ -0,0 +1,2 @@ +site="${GNOME_SITE}/$pkgname/cache.json" +ignore="3.*[13579].*" diff --git a/srcpkgs/exfat-utils/template b/srcpkgs/exfat-utils/template index aa7647d77d..b0c89485b6 100644 --- a/srcpkgs/exfat-utils/template +++ b/srcpkgs/exfat-utils/template @@ -7,7 +7,6 @@ short_desc="Utilities for exFAT file system" maintainer="Juan RP " license="GPL-2" homepage="http://code.google.com/p/exfat" -update_site="http://code.google.com/p/exfat/wiki/Downloads" distfiles="https://docs.google.com/uc?export=download&id=0B7CLI-REKbE3UzNtSkRvdHBpdjQ>${pkgname}-${version}.tar.gz" checksum=c64454083961fbad164fa7daef03d7e9247aa978c11395d62a265d48a1d56232 diff --git a/srcpkgs/exfat-utils/update b/srcpkgs/exfat-utils/update new file mode 100644 index 0000000000..09ee1c6f18 --- /dev/null +++ b/srcpkgs/exfat-utils/update @@ -0,0 +1 @@ +site="http://code.google.com/p/exfat/wiki/Downloads" diff --git a/srcpkgs/exiv2/template b/srcpkgs/exiv2/template index 61d7daddf9..a4a67969c6 100644 --- a/srcpkgs/exiv2/template +++ b/srcpkgs/exiv2/template @@ -8,7 +8,6 @@ short_desc="Image metadata manipulation" maintainer="Juan RP " license="GPL-2" homepage="http://www.exiv2.org" -update_site="http://www.exiv2.org/download.html" distfiles="${homepage}/exiv2-$version.tar.gz" checksum=f4a443e6c7fb9d9f5e787732f76969a64c72c4c04af69b10ed57f949c2dfef8e diff --git a/srcpkgs/exiv2/update b/srcpkgs/exiv2/update new file mode 100644 index 0000000000..294a81a384 --- /dev/null +++ b/srcpkgs/exiv2/update @@ -0,0 +1 @@ +site="http://www.exiv2.org/download.html" diff --git a/srcpkgs/f2fs-tools/template b/srcpkgs/f2fs-tools/template index 1b767683c0..2554d9aab9 100644 --- a/srcpkgs/f2fs-tools/template +++ b/srcpkgs/f2fs-tools/template @@ -11,8 +11,6 @@ short_desc="Tools for the Linux Flash-Friendly File System (F2FS)" maintainer="Juan RP " license="GPL-2" homepage="http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git" -update_site="http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/plain/VERSION" -update_pattern='\d+\.[\d.]+' do_fetch() { git clone -b v${version} git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git ${pkgname}-${version} diff --git a/srcpkgs/f2fs-tools/update b/srcpkgs/f2fs-tools/update new file mode 100644 index 0000000000..c90eb02bc4 --- /dev/null +++ b/srcpkgs/f2fs-tools/update @@ -0,0 +1,2 @@ +site="http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/plain/VERSION" +pattern='\d+\.[\d.]+' diff --git a/srcpkgs/faac/template b/srcpkgs/faac/template index b4d5e4e48a..5865aa23fe 100644 --- a/srcpkgs/faac/template +++ b/srcpkgs/faac/template @@ -9,7 +9,6 @@ makedepends="libmp4v2-devel>=2.0.0" short_desc="AAC audio encoder library" maintainer="Juan RP " homepage="http://www.audiocoding.com/" -update_ignore="*2001" license="GPL-2, BSD" distfiles="${SOURCEFORGE_SITE}/faac/faac-${version}.tar.gz" checksum=c5141199f4cfb17d749c36ba8cfe4b25f838da67c22f0fec40228b6b9c3d19df diff --git a/srcpkgs/faac/update b/srcpkgs/faac/update new file mode 100644 index 0000000000..c9342cfb74 --- /dev/null +++ b/srcpkgs/faac/update @@ -0,0 +1 @@ +ignore="*2001" diff --git a/srcpkgs/faad2/template b/srcpkgs/faad2/template index 45103314dc..fc1b8eb45a 100644 --- a/srcpkgs/faad2/template +++ b/srcpkgs/faad2/template @@ -7,7 +7,6 @@ make_install_args="manmdir=/usr/share/man/man1" short_desc="AAC decoding library" maintainer="Juan RP " homepage="http://www.audiocoding.com/" -update_ignore="2003*" license="Freeware, GPL-2" distfiles="${SOURCEFORGE_SITE}/faac/$pkgname-$version.tar.bz2" checksum=14561b5d6bc457e825bfd3921ae50a6648f377a9396eaf16d4b057b39a3f63b5 diff --git a/srcpkgs/faad2/update b/srcpkgs/faad2/update new file mode 100644 index 0000000000..a26db8065d --- /dev/null +++ b/srcpkgs/faad2/update @@ -0,0 +1 @@ +ignore="2003*" diff --git a/srcpkgs/fcgi/template b/srcpkgs/fcgi/template index abffec9747..8fef32d498 100644 --- a/srcpkgs/fcgi/template +++ b/srcpkgs/fcgi/template @@ -7,7 +7,6 @@ short_desc="Fast, open, and secure Web server interface" maintainer="Enno Boland " license="custom" homepage="http://www.fastcgi.com/" -update_pkgname="libfcgi" distfiles="http://ftp.de.debian.org/debian/pool/main/libf/libfcgi/libfcgi_${version}.orig.tar.gz" checksum=c21f553f41141a847b2f1a568ec99a3068262821e4e30bc9d4b5d9091aa0b5f7 wrksrc="libfcgi-${version}.orig" diff --git a/srcpkgs/fcgi/update b/srcpkgs/fcgi/update new file mode 100644 index 0000000000..a57b5dbf92 --- /dev/null +++ b/srcpkgs/fcgi/update @@ -0,0 +1 @@ +pkgname="libfcgi" diff --git a/srcpkgs/fftw/template b/srcpkgs/fftw/template index 8234b984d5..5f505f58db 100644 --- a/srcpkgs/fftw/template +++ b/srcpkgs/fftw/template @@ -7,7 +7,6 @@ short_desc="Library for computing the discrete Fourier transform (DFT)" maintainer="Juan RP " license="GPL-2" homepage="http://www.fftw.org/" -update_site="http://www.fftw.org/download.html" distfiles="${homepage}/fftw-${version}.tar.gz" checksum=8f0cde90929bc05587c3368d2f15cd0530a60b8a9912a8e2979a72dbe5af0982 diff --git a/srcpkgs/fftw/update b/srcpkgs/fftw/update new file mode 100644 index 0000000000..ecbe8c822e --- /dev/null +++ b/srcpkgs/fftw/update @@ -0,0 +1 @@ +site="http://www.fftw.org/download.html" diff --git a/srcpkgs/filezilla/template b/srcpkgs/filezilla/template index cb8a102917..58c2eaed01 100644 --- a/srcpkgs/filezilla/template +++ b/srcpkgs/filezilla/template @@ -14,6 +14,5 @@ short_desc="Fast and reliable FTP, FTPS and SFTP client" maintainer="Juan RP " license="GPL-2" homepage="http://filezilla-project.org/" -update_pattern="FileZilla_\K[\d.]+(?=_src)" distfiles="${SOURCEFORGE_SITE}/${pkgname}/FileZilla_${version}_src.tar.bz2" checksum=b351ee946b8c399c3b9ab4ad73de688a4bad6025d15aa9ff5b6b853a6254ede4 diff --git a/srcpkgs/filezilla/update b/srcpkgs/filezilla/update new file mode 100644 index 0000000000..6f02157270 --- /dev/null +++ b/srcpkgs/filezilla/update @@ -0,0 +1 @@ +pattern="FileZilla_\K[\d.]+(?=_src)" diff --git a/srcpkgs/fingerprint-gui/template b/srcpkgs/fingerprint-gui/template index 0b74b1dabc..29a4fcbad7 100644 --- a/srcpkgs/fingerprint-gui/template +++ b/srcpkgs/fingerprint-gui/template @@ -11,7 +11,6 @@ short_desc="Fingerprint management GUI and PAM module" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://www.ullrich-online.cc/fingerprint/" -update_site="http://www.ullrich-online.cc/fingerprint/downloads.php" distfiles="http://www.ullrich-online.cc/fingerprint/download/${pkgname}-${version}.tar.gz" checksum=f5021d4c446b65ce62de63b9b2874b05a62318b386f35577ca0322b722a1920f diff --git a/srcpkgs/fingerprint-gui/update b/srcpkgs/fingerprint-gui/update new file mode 100644 index 0000000000..2df18bf630 --- /dev/null +++ b/srcpkgs/fingerprint-gui/update @@ -0,0 +1 @@ +site="http://www.ullrich-online.cc/fingerprint/downloads.php" diff --git a/srcpkgs/fish-shell/template b/srcpkgs/fish-shell/template index 286d09f45c..c02a015e09 100644 --- a/srcpkgs/fish-shell/template +++ b/srcpkgs/fish-shell/template @@ -12,7 +12,6 @@ conf_files="/etc/fish/config.fish" wrksrc="fish-${version}" maintainer="Steven R " homepage="http://fishshell.com/" -update_pkgname="fish" license="GPL" short_desc="User friendly shell intended mostly for interactive use" diff --git a/srcpkgs/fish-shell/update b/srcpkgs/fish-shell/update new file mode 100644 index 0000000000..7cd80d0283 --- /dev/null +++ b/srcpkgs/fish-shell/update @@ -0,0 +1 @@ +pkgname="fish" diff --git a/srcpkgs/font-unifont-bdf/template b/srcpkgs/font-unifont-bdf/template index 1701c863ca..cfe672c340 100644 --- a/srcpkgs/font-unifont-bdf/template +++ b/srcpkgs/font-unifont-bdf/template @@ -5,7 +5,6 @@ revision=1 create_wrksrc=yes noarch=yes homepage="http://unifoundry.com/unifont.html" -update_pattern='unifont-\K[\d.]+(?=\.bdf)' distfiles="http://unifoundry.com/pub/unifont-${version}/font-builds/unifont-${version}.bdf.gz" depends="font-util" font_dirs="/usr/share/fonts/misc" diff --git a/srcpkgs/font-unifont-bdf/update b/srcpkgs/font-unifont-bdf/update new file mode 100644 index 0000000000..6a734e5682 --- /dev/null +++ b/srcpkgs/font-unifont-bdf/update @@ -0,0 +1 @@ +pattern='unifont-\K[\d.]+(?=\.bdf)' diff --git a/srcpkgs/fonts-croscore-ttf/template b/srcpkgs/fonts-croscore-ttf/template index f6a7edf145..fd6b04a554 100644 --- a/srcpkgs/fonts-croscore-ttf/template +++ b/srcpkgs/fonts-croscore-ttf/template @@ -11,7 +11,6 @@ short_desc="TrueType fonts Arimo, Cousine, Tinos and SymbolNeu from Google" maintainer="Carlo Dormeletti " license="Apache-2.0" homepage="http://www.google.com/fonts/" -update_pkgname=croscorefonts distfiles="http://gsdview.appspot.com/chromeos-localmirror/distfiles/croscorefonts-${version}.tar.gz" checksum=b469b5457b093a9d8878ef6ff6868f54e258441b88983b1866f64c8995584b4c conflicts="google-fonts-ttf-git>=0" diff --git a/srcpkgs/fonts-croscore-ttf/update b/srcpkgs/fonts-croscore-ttf/update new file mode 100644 index 0000000000..2a37035b44 --- /dev/null +++ b/srcpkgs/fonts-croscore-ttf/update @@ -0,0 +1 @@ +pkgname=croscorefonts diff --git a/srcpkgs/foobillard++/template b/srcpkgs/foobillard++/template index f8eb1dc192..4e4f302515 100644 --- a/srcpkgs/foobillard++/template +++ b/srcpkgs/foobillard++/template @@ -5,7 +5,6 @@ revision=1 wrksrc=foobillardplus-${version} build_style=gnu-configure homepage="http://foobillardplus.sourceforge.net/" -update_pkgname="foobillardplus" distfiles="${SOURCEFORGE_SITE}/foobillardplus/foobillardplus-$version.tar.gz" hostmakedepends="automake pkg-config" makedepends="libICE-devel freetype-devel libpng-devel>=1.6 glu-devel SDL_mixer-devel SDL_net-devel" diff --git a/srcpkgs/foobillard++/update b/srcpkgs/foobillard++/update new file mode 100644 index 0000000000..89ee675215 --- /dev/null +++ b/srcpkgs/foobillard++/update @@ -0,0 +1 @@ +pkgname="foobillardplus" diff --git a/srcpkgs/foomatic-db/template b/srcpkgs/foomatic-db/template index b06890ea7b..d1881bc51e 100644 --- a/srcpkgs/foomatic-db/template +++ b/srcpkgs/foomatic-db/template @@ -8,6 +8,5 @@ short_desc="OpenPrinting printer support - database" homepage="http://www.linuxfoundation.org/collaborate/workgroups/openprinting/databasefoomatic" license="GPL-2, MIT" maintainer="Juan RP " -update_pattern=$pkgname'-[\d.]+-\K[\d]+' distfiles="https://www.openprinting.org/download/foomatic/$pkgname-4.0-$version.tar.gz" checksum=32957243b3989eaef9f290b4655fad1eaffecdfd424a7cae3b24666013193004 diff --git a/srcpkgs/foomatic-db/update b/srcpkgs/foomatic-db/update new file mode 100644 index 0000000000..632ae769a2 --- /dev/null +++ b/srcpkgs/foomatic-db/update @@ -0,0 +1 @@ +pattern=$pkgname'-[\d.]+-\K[\d]+' diff --git a/srcpkgs/fox/template b/srcpkgs/fox/template index b327fc4b49..50de94920a 100644 --- a/srcpkgs/fox/template +++ b/srcpkgs/fox/template @@ -11,7 +11,6 @@ makedepends="zlib-devel bzip2-devel libXcursor-devel libXft-devel libXrandr-deve short_desc="Free Objects for X: GUI Toolkit for C++" maintainer="Juan RP " homepage="http://www.fox-toolkit.org/" -update_ignore="?.[13579].* doc*" license="LGPL-2.1, MIT" distfiles="http://ftp.fox-toolkit.org/pub/fox-$version.tar.gz" checksum=342c751d2a7edab136ad26cb4483329da3c16c7abf2f283f318d666ef12d0887 diff --git a/srcpkgs/fox/update b/srcpkgs/fox/update new file mode 100644 index 0000000000..57f298b2cf --- /dev/null +++ b/srcpkgs/fox/update @@ -0,0 +1 @@ +ignore="?.[13579].* doc*" diff --git a/srcpkgs/fuse-archivemount/template b/srcpkgs/fuse-archivemount/template index e063e4aff7..7d384fda00 100644 --- a/srcpkgs/fuse-archivemount/template +++ b/srcpkgs/fuse-archivemount/template @@ -10,6 +10,5 @@ short_desc="Mounts an archive for access as a file system" maintainer="Juan RP " license="LGPL-2" homepage="http://www.cybernoia.de/software/archivemount/" -update_pkgname="archivemount" distfiles="${homepage}/${pkgname/fuse-/}-${version}.tar.gz" checksum=e78899a8b7c9cb43fa4526d08c54a9e171475c00bf095770b8779a33e37661ff diff --git a/srcpkgs/fuse-archivemount/update b/srcpkgs/fuse-archivemount/update new file mode 100644 index 0000000000..c85153cb8b --- /dev/null +++ b/srcpkgs/fuse-archivemount/update @@ -0,0 +1 @@ +pkgname="archivemount" diff --git a/srcpkgs/fuse-exfat/template b/srcpkgs/fuse-exfat/template index ce83923135..e1708ac3e4 100644 --- a/srcpkgs/fuse-exfat/template +++ b/srcpkgs/fuse-exfat/template @@ -9,7 +9,6 @@ short_desc="Free exFAT file system implementation" maintainer="Juan RP " license="GPL-2" homepage="http://code.google.com/p/exfat" -update_site="http://code.google.com/p/exfat/wiki/Downloads" distfiles="https://docs.google.com/uc?export=download&id=0B7CLI-REKbE3VTdaa0EzTkhYdU0>${pkgname}-${version}.tar.gz" checksum=198c520e417e955dc5c08687c278e63eefa56719da4452aa4a605be0327f953e diff --git a/srcpkgs/fuse-exfat/update b/srcpkgs/fuse-exfat/update new file mode 100644 index 0000000000..09ee1c6f18 --- /dev/null +++ b/srcpkgs/fuse-exfat/update @@ -0,0 +1 @@ +site="http://code.google.com/p/exfat/wiki/Downloads" diff --git a/srcpkgs/fuse-sshfs/template b/srcpkgs/fuse-sshfs/template index 7e6e7c22be..c796a8d44c 100644 --- a/srcpkgs/fuse-sshfs/template +++ b/srcpkgs/fuse-sshfs/template @@ -11,7 +11,6 @@ replaces="sshfs-fuse>=0" short_desc="FUSE client based on the SSH File Transfer Protocol" maintainer="Juan RP " homepage="http://fuse.sourceforge.net/sshfs.html" -update_pkgname="sshfs-fuse" license="GPL-2" distfiles="${SOURCEFORGE_SITE}/fuse/sshfs-fuse-$version.tar.gz" checksum=e9171452e5d0150b9c6a2158fd2e2dcefb5d5d03ba4d208949e00a3a46c6e63e diff --git a/srcpkgs/fuse-sshfs/update b/srcpkgs/fuse-sshfs/update new file mode 100644 index 0000000000..db5961c788 --- /dev/null +++ b/srcpkgs/fuse-sshfs/update @@ -0,0 +1 @@ +pkgname="sshfs-fuse" diff --git a/srcpkgs/fuse-usmb/template b/srcpkgs/fuse-usmb/template index 346df062ca..cbc6edf9af 100644 --- a/srcpkgs/fuse-usmb/template +++ b/srcpkgs/fuse-usmb/template @@ -9,8 +9,6 @@ short_desc="FUSE filesystem for SMB/CIFS shares" maintainer="Juan RP " license="GPL-3" homepage="http://ametros.net/code.html#usmb" -update_site="http://repo.or.cz/w/usmb.git" -update_pattern='tags/\K[\d]+' do_fetch() { git clone -b${version} git://repo.or.cz/usmb.git ${pkgname}-${version} diff --git a/srcpkgs/fuse-usmb/update b/srcpkgs/fuse-usmb/update new file mode 100644 index 0000000000..4082c7dc00 --- /dev/null +++ b/srcpkgs/fuse-usmb/update @@ -0,0 +1,2 @@ +site="http://repo.or.cz/w/usmb.git" +pattern='tags/\K[\d]+' diff --git a/srcpkgs/fvwm/template b/srcpkgs/fvwm/template index d61b55372e..70e0edeb76 100644 --- a/srcpkgs/fvwm/template +++ b/srcpkgs/fvwm/template @@ -12,7 +12,6 @@ short_desc="An extremely powerful ICCCM-compliant window manager" maintainer="Christian Neukirchen " license="GPL-2,custom" homepage="http://fvwm.org/" -update_ignore="2.7.0" distfiles="ftp://ftp.fvwm.org/pub/fvwm/version-${version%%.*}/${pkgname}-${version}.tar.bz2" checksum=21549995c53906be5533746a1cf61b1ecf8dd8ef6816a0b20615d45ff78b48cf diff --git a/srcpkgs/fvwm/update b/srcpkgs/fvwm/update new file mode 100644 index 0000000000..cb19f60cdd --- /dev/null +++ b/srcpkgs/fvwm/update @@ -0,0 +1 @@ +ignore="2.7.0" diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template index 5feaaa61c9..945000d6c4 100644 --- a/srcpkgs/gajim/template +++ b/srcpkgs/gajim/template @@ -12,7 +12,6 @@ pycompile_module="gajim" short_desc="Full featured Jabber/XMPP client" maintainer="Juan RP " homepage="https://www.gajim.org" -update_site="https://gajim.org/downloads.php?lang=en" license="GPL-3" distfiles="https://gajim.org/downloads/${version}/gajim-${version}.tar.bz2" checksum=7abd8dfb22522d3a2f0345da2a86b99fb9917bfd97310124df8601fab82ca193 diff --git a/srcpkgs/gajim/update b/srcpkgs/gajim/update new file mode 100644 index 0000000000..760f36fd5d --- /dev/null +++ b/srcpkgs/gajim/update @@ -0,0 +1 @@ +site="https://gajim.org/downloads.php?lang=en" diff --git a/srcpkgs/gbdfed/template b/srcpkgs/gbdfed/template index e903390d22..451ac1a5b0 100644 --- a/srcpkgs/gbdfed/template +++ b/srcpkgs/gbdfed/template @@ -10,6 +10,5 @@ short_desc="A GTK2 bitmap font editor" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://www.math.nmsu.edu/~mleisher/Software/gbdfed/" -update_ignore="16" distfiles="http://www.math.nmsu.edu/~mleisher/Software/${pkgname}/${pkgname}-${version}.tbz2>${pkgname}-${version}.tar.bz2" checksum=5db25d4ce688dcb188dee056e58614a94a5e4fce4b6066fbb310951ab999093c diff --git a/srcpkgs/gbdfed/update b/srcpkgs/gbdfed/update new file mode 100644 index 0000000000..4b39fa6b2b --- /dev/null +++ b/srcpkgs/gbdfed/update @@ -0,0 +1 @@ +ignore="16" diff --git a/srcpkgs/gcc-multilib/template b/srcpkgs/gcc-multilib/template index 095ea5eebc..abfeec9ccb 100644 --- a/srcpkgs/gcc-multilib/template +++ b/srcpkgs/gcc-multilib/template @@ -10,7 +10,6 @@ wrksrc="gcc-${version}" short_desc="The GNU C Compiler (multilib files)" maintainer="Juan RP " homepage="http://gcc.gnu.org" -update_pkgname=gcc license="GFDL-1.2, GPL-3, LGPL-2.1" distfiles="http://ftp.gnu.org/pub/gnu/gcc/gcc-$version/gcc-$version.tar.bz2" checksum=2020c98295856aa13fda0f2f3a4794490757fc24bcca918d52cc8b4917b972dd diff --git a/srcpkgs/gcc-multilib/update b/srcpkgs/gcc-multilib/update new file mode 100644 index 0000000000..9cbcc4b90d --- /dev/null +++ b/srcpkgs/gcc-multilib/update @@ -0,0 +1 @@ +pkgname=gcc diff --git a/srcpkgs/geoclue2/template b/srcpkgs/geoclue2/template index 648d2a9686..d76b45f485 100644 --- a/srcpkgs/geoclue2/template +++ b/srcpkgs/geoclue2/template @@ -11,7 +11,6 @@ depends="libsoup>=2.44" conf_file="/etc/geoclue/geoclue.conf" short_desc="The Geoinformation Service (2.x series)" homepage="http://www.freedesktop.org/wiki/Software/GeoClue" -update_pkgname=geoclue license="LGPL-2.1" maintainer="Juan RP " distfiles="http://www.freedesktop.org/software/geoclue/releases/${version%.*}/geoclue-${version}.tar.xz" diff --git a/srcpkgs/geoclue2/update b/srcpkgs/geoclue2/update new file mode 100644 index 0000000000..691a00cabf --- /dev/null +++ b/srcpkgs/geoclue2/update @@ -0,0 +1 @@ +pkgname=geoclue diff --git a/srcpkgs/getmail/template b/srcpkgs/getmail/template index 6fe7edf6c3..8796ae3d66 100644 --- a/srcpkgs/getmail/template +++ b/srcpkgs/getmail/template @@ -12,6 +12,5 @@ short_desc="A POP3 mail retriever with reliable Maildir and command delivery" maintainer="Juan RP " license="GPL-2" homepage="http://pyropus.ca/software/getmail" -update_ignore="*a*" distfiles="http://pyropus.ca/software/getmail/old-versions/$pkgname-$version.tar.gz" checksum=f423269290e8afc0071cabeae88d3f1adfd9dc351041ac14a2d4e05b44ad3897 diff --git a/srcpkgs/getmail/update b/srcpkgs/getmail/update new file mode 100644 index 0000000000..2c857beffb --- /dev/null +++ b/srcpkgs/getmail/update @@ -0,0 +1 @@ +ignore="*a*" diff --git a/srcpkgs/ghc-bin/template b/srcpkgs/ghc-bin/template index fd99ab511f..4f01da8ad4 100644 --- a/srcpkgs/ghc-bin/template +++ b/srcpkgs/ghc-bin/template @@ -7,7 +7,6 @@ short_desc="Glorious Haskell Compiler - precompiled binaries" maintainer="Christian Neukirchen " license="custom" homepage="http://www.haskell.org/ghc/" -update_pattern='ghc-bin-\K[\d.]+\d+' only_for_archs="i686 x86_64" case "$XBPS_TARGET_MACHINE" in x86_64*) diff --git a/srcpkgs/ghc-bin/update b/srcpkgs/ghc-bin/update new file mode 100644 index 0000000000..e716ea254f --- /dev/null +++ b/srcpkgs/ghc-bin/update @@ -0,0 +1 @@ +pattern='ghc-bin-\K[\d.]+\d+' diff --git a/srcpkgs/glade3/template b/srcpkgs/glade3/template index 0e05ad41cb..6b9eb2edd8 100644 --- a/srcpkgs/glade3/template +++ b/srcpkgs/glade3/template @@ -10,7 +10,6 @@ makedepends="gtk+3-devel libxml2-devel python-devel python-gobject-devel" depends="hicolor-icon-theme desktop-file-utils" short_desc="An User Interface Designer for GTK+3" homepage="http://glade.gnome.org/" -update_pkgname="glade" license="GPL-2" maintainer="Juan RP " distfiles="${GNOME_SITE}/glade/${version%.*}/glade-${version}.tar.xz" diff --git a/srcpkgs/glade3/update b/srcpkgs/glade3/update new file mode 100644 index 0000000000..c497613e0f --- /dev/null +++ b/srcpkgs/glade3/update @@ -0,0 +1 @@ +pkgname="glade" diff --git a/srcpkgs/glew/template b/srcpkgs/glew/template index 4ce7dc685d..ce7bd76cee 100644 --- a/srcpkgs/glew/template +++ b/srcpkgs/glew/template @@ -7,7 +7,6 @@ makedepends="libXext-devel libXmu-devel libXi-devel MesaLib-devel" short_desc="The OpenGL Extension Wrangler Library" maintainer="Juan RP " homepage="http://glew.sourceforge.net" -update_ignore="20*" license="BSD, MIT, GPL-2" distfiles="${SOURCEFORGE_SITE}/glew/glew-${version}.tgz" checksum=69bbce306ac281c4fa806a7a7d02c0596281a2d8f9d70690e98126f23ba513d6 diff --git a/srcpkgs/glew/update b/srcpkgs/glew/update new file mode 100644 index 0000000000..64555b2ec2 --- /dev/null +++ b/srcpkgs/glew/update @@ -0,0 +1 @@ +ignore="20*" diff --git a/srcpkgs/glew19/template b/srcpkgs/glew19/template index 4f5222a281..3934de7d8b 100644 --- a/srcpkgs/glew19/template +++ b/srcpkgs/glew19/template @@ -7,8 +7,6 @@ makedepends="libXext-devel libXmu-devel libXi-devel MesaLib-devel" short_desc="The OpenGL Extension Wrangler Library (1.9 branch)" maintainer="Juan RP " homepage="http://glew.sourceforge.net" -update_pkgname="glew" -update_ignore="20* 1.1*" license="BSD, MIT, GPL-2" distfiles="${SOURCEFORGE_SITE}/glew/glew-${version}.tgz" checksum=9b36530e414c95d6624be9d6815a5be1531d1986300ae5903f16977ab8aeb787 diff --git a/srcpkgs/glew19/update b/srcpkgs/glew19/update new file mode 100644 index 0000000000..7f7277fbcb --- /dev/null +++ b/srcpkgs/glew19/update @@ -0,0 +1,2 @@ +pkgname="glew" +ignore="20* 1.1*" diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template index 9a321ea1b2..5679fc6c43 100644 --- a/srcpkgs/glfw/template +++ b/srcpkgs/glfw/template @@ -9,7 +9,6 @@ short_desc="Multi-platform library for creating windows with OpenGL contexts" maintainer="Enno Boland " license="BSD-3" homepage="http://www.glfw.org" -update_ignore='*WIN*' distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.bz2" checksum=4f09d70b9e341c8613873cadb51d9e40a67982b5bb919e024783cec7ac09efc0 configure_args="-DBUILD_SHARED_LIBS=ON" diff --git a/srcpkgs/glfw/update b/srcpkgs/glfw/update new file mode 100644 index 0000000000..e38a298814 --- /dev/null +++ b/srcpkgs/glfw/update @@ -0,0 +1 @@ +ignore='*WIN*' diff --git a/srcpkgs/gnome-online-accounts/template b/srcpkgs/gnome-online-accounts/template index b5f3352f06..f10ac70ef5 100644 --- a/srcpkgs/gnome-online-accounts/template +++ b/srcpkgs/gnome-online-accounts/template @@ -18,8 +18,6 @@ homepage="http://www.gnome.org" license="GPL-2" distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz" checksum=341a2c79cd26770ccbf4476f7ce7222cfe026f442cfbd05dc7f7612f7b30dae9 -update_site="${GNOME_SITE}/$pkgname/cache.json" -update_ignore="3.*[13579].*" gnome-online-accounts-devel_package() { diff --git a/srcpkgs/gnome-online-accounts/update b/srcpkgs/gnome-online-accounts/update new file mode 100644 index 0000000000..a84fbbad8b --- /dev/null +++ b/srcpkgs/gnome-online-accounts/update @@ -0,0 +1,2 @@ +site="${GNOME_SITE}/$pkgname/cache.json" +ignore="3.*[13579].*" diff --git a/srcpkgs/gnome-ssh-askpass/template b/srcpkgs/gnome-ssh-askpass/template index 236d444552..5e8d321b48 100644 --- a/srcpkgs/gnome-ssh-askpass/template +++ b/srcpkgs/gnome-ssh-askpass/template @@ -11,7 +11,6 @@ license="BSD" homepage="http://www.openssh.org" distfiles="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-$version.tar.gz" checksum=b2f8394eae858dabbdef7dac10b99aec00c95462753e80342e530bbb6f725507 -update_pkgname="openssh" do_build() { cd contrib diff --git a/srcpkgs/gnome-ssh-askpass/update b/srcpkgs/gnome-ssh-askpass/update new file mode 100644 index 0000000000..b4e3d7e511 --- /dev/null +++ b/srcpkgs/gnome-ssh-askpass/update @@ -0,0 +1 @@ +pkgname="openssh" diff --git a/srcpkgs/gnu-efi-libs/template b/srcpkgs/gnu-efi-libs/template index 087cd52fb3..f151870216 100644 --- a/srcpkgs/gnu-efi-libs/template +++ b/srcpkgs/gnu-efi-libs/template @@ -9,7 +9,6 @@ short_desc="Library for building UEFI Applications using GNU toolchain" maintainer="Juan RP " license="GPL-2" homepage="http://sourceforge.net/projects/gnu-efi/" -update_pkgname=gnu-efi distfiles="${SOURCEFORGE_SITE}/gnu-efi/gnu-efi_${version}.orig.tar.gz" checksum=d5c5ca168d25bb54ea936a25175d7626778001f788bddc60dbed103874583621 diff --git a/srcpkgs/gnu-efi-libs/update b/srcpkgs/gnu-efi-libs/update new file mode 100644 index 0000000000..c3521f1661 --- /dev/null +++ b/srcpkgs/gnu-efi-libs/update @@ -0,0 +1 @@ +pkgname=gnu-efi diff --git a/srcpkgs/gnubg/template b/srcpkgs/gnubg/template index a39757ffbc..7e034eb8c1 100644 --- a/srcpkgs/gnubg/template +++ b/srcpkgs/gnubg/template @@ -16,8 +16,6 @@ short_desc="GNU Backgammon game" maintainer="Christian Neukirchen " license="GPL-3" homepage="http://www.gnubg.org" -update_site="http://www.gnubg.org/index.php?itemid=22" -update_pattern='gnubg-release-\K[\d.]+\d+' distfiles="http://www.gnubg.org/media/sources/$pkgname-release-$version-sources.tar.gz" checksum=66ca950d33d697f7a87605dfd3b83165ed756a927eaef164684914b9b0a14e3f diff --git a/srcpkgs/gnubg/update b/srcpkgs/gnubg/update new file mode 100644 index 0000000000..88f607b04a --- /dev/null +++ b/srcpkgs/gnubg/update @@ -0,0 +1,2 @@ +site="http://www.gnubg.org/index.php?itemid=22" +pattern='gnubg-release-\K[\d.]+\d+' diff --git a/srcpkgs/gnupg/template b/srcpkgs/gnupg/template index 861314c0ff..2605a20c34 100644 --- a/srcpkgs/gnupg/template +++ b/srcpkgs/gnupg/template @@ -9,6 +9,5 @@ short_desc="The GNU Privacy Guard" maintainer="Juan RP " license="GPL-3" homepage="http://www.gnupg.org/" -update_ignore="2.*" distfiles="ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${version}.tar.bz2" checksum=b7b5fdda78849955e0cdbc5a085f3a08f8b7fba126c622085debb62def5d6388 diff --git a/srcpkgs/gnupg/update b/srcpkgs/gnupg/update new file mode 100644 index 0000000000..6bfa7d9a00 --- /dev/null +++ b/srcpkgs/gnupg/update @@ -0,0 +1 @@ +ignore="2.*" diff --git a/srcpkgs/gnupg2/template b/srcpkgs/gnupg2/template index 034114ac3d..88ded55159 100644 --- a/srcpkgs/gnupg2/template +++ b/srcpkgs/gnupg2/template @@ -19,7 +19,6 @@ short_desc="The GNU Privacy Guard" maintainer="Juan RP " license="GPL-3" homepage="http://www.gnupg.org/" -update_pkgname=gnupg distfiles="ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${version}.tar.bz2" checksum=70ecd01d2875db62624c911c2fd815742f50aef5492698eb3bfc09a08690ce49 diff --git a/srcpkgs/gnupg2/update b/srcpkgs/gnupg2/update new file mode 100644 index 0000000000..95f92483c0 --- /dev/null +++ b/srcpkgs/gnupg2/update @@ -0,0 +1 @@ +pkgname=gnupg diff --git a/srcpkgs/gnuplot/template b/srcpkgs/gnuplot/template index cecdf269e9..55daf75342 100644 --- a/srcpkgs/gnuplot/template +++ b/srcpkgs/gnuplot/template @@ -10,7 +10,6 @@ replaces="gnuplot<4.6.6_1" short_desc="Command-line driven graphing utility" maintainer="Eivind Uggedal " homepage="http://www.gnuplot.info/" -update_ignore="*rc*" license="gnuplot" distfiles="${SOURCEFORGE_SITE}/gnuplot/gnuplot/${version}/gnuplot-${version}.tar.gz" checksum=417d4bc5bc914a60409bb75cf18dd14f48b07f53c6ad3c4a4d3cd9a8d7370faf diff --git a/srcpkgs/gnuplot/update b/srcpkgs/gnuplot/update new file mode 100644 index 0000000000..e299d00ea6 --- /dev/null +++ b/srcpkgs/gnuplot/update @@ -0,0 +1 @@ +ignore="*rc*" diff --git a/srcpkgs/go/template b/srcpkgs/go/template index fe21ae978d..6964fb8368 100644 --- a/srcpkgs/go/template +++ b/srcpkgs/go/template @@ -7,7 +7,6 @@ hostmakedepends="git ca-certificates" short_desc="The Go Programming Language" maintainer="Dominik Honnef " homepage="http://golang.org/" -update_ignore="*beta* *rc*" license="BSD" distfiles="http://golang.org/dl/go${version}.src.tar.gz" checksum=3ae9f67e45a5ca7004b28808da8b1367d328a371d641ddbe636c0fb0ae0ffdae diff --git a/srcpkgs/go/update b/srcpkgs/go/update new file mode 100644 index 0000000000..2e4fc10d20 --- /dev/null +++ b/srcpkgs/go/update @@ -0,0 +1 @@ +ignore="*beta* *rc*" diff --git a/srcpkgs/gobject-introspection/template b/srcpkgs/gobject-introspection/template index d753596ebf..b61d427e98 100644 --- a/srcpkgs/gobject-introspection/template +++ b/srcpkgs/gobject-introspection/template @@ -14,8 +14,6 @@ homepage="http://live.gnome.org/GObjectInstrospection" license="GPL-2, LGPL-2.1" distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz" checksum=3ba2edfad4f71d4f0de16960b5d5f2511335fa646b2c49bbb93ce5942b3f95f7 -update_site="${GNOME_SITE}/$pkgname/cache.json" -update_ignore="1.*[13579].*" nocross=yes gir-freedesktop_package() { diff --git a/srcpkgs/gobject-introspection/update b/srcpkgs/gobject-introspection/update new file mode 100644 index 0000000000..0980963f6d --- /dev/null +++ b/srcpkgs/gobject-introspection/update @@ -0,0 +1,2 @@ +site="${GNOME_SITE}/$pkgname/cache.json" +ignore="1.*[13579].*" diff --git a/srcpkgs/gpm/template b/srcpkgs/gpm/template index 4d6d658663..ea76a63d8f 100644 --- a/srcpkgs/gpm/template +++ b/srcpkgs/gpm/template @@ -10,9 +10,6 @@ short_desc="A mouse server for the console and xterm" maintainer="Juan RP " homepage="http://www.nico.schottelius.org/software/gpm/" license="GPL-2" -update_site="https://github.com/telmich/gpm/tags" -update_pattern='archive/\K[\d.]+(?=\.tar\.gz)' -update_ignore="1.99*" distfiles="http://www.nico.schottelius.org/software/gpm/archives/${pkgname}-${version}.tar.lzma" checksum=a955053b36556ffa7c628ce18fd6de7d625966573fa412fb08869533d8f7385c diff --git a/srcpkgs/gpm/update b/srcpkgs/gpm/update new file mode 100644 index 0000000000..c25c7c578c --- /dev/null +++ b/srcpkgs/gpm/update @@ -0,0 +1,3 @@ +site="https://github.com/telmich/gpm/tags" +pattern='archive/\K[\d.]+(?=\.tar\.gz)' +ignore="1.99*" diff --git a/srcpkgs/gprolog/template b/srcpkgs/gprolog/template index 31e62daad1..7c56341d71 100644 --- a/srcpkgs/gprolog/template +++ b/srcpkgs/gprolog/template @@ -12,7 +12,6 @@ short_desc="GNU Prolog" maintainer="Christian Neukirchen " license="GPL-2,LGPL-3" homepage="http://www.gprolog.org/" -update_ignore="*.pkg" distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.gz" checksum=18c0e9644b33afd4dd3cdf29f94c099ad820d65e0c99da5495b1ae43b4f2b18e disable_parallel_build=yes diff --git a/srcpkgs/gprolog/update b/srcpkgs/gprolog/update new file mode 100644 index 0000000000..82081e7699 --- /dev/null +++ b/srcpkgs/gprolog/update @@ -0,0 +1 @@ +ignore="*.pkg" diff --git a/srcpkgs/gpsbabel/template b/srcpkgs/gpsbabel/template index 1de69ab9d1..3f0d343e9b 100644 --- a/srcpkgs/gpsbabel/template +++ b/srcpkgs/gpsbabel/template @@ -10,7 +10,6 @@ short_desc="Converts waypoints, tracks, and routes between popular GPS formats" hostmakedepends="perl>=5.20 docbook-xml xmlwf openjdk-jre offo-hyphenation" makedepends="qt-devel libusb-compat-devel expat-devel libxslt-devel" depends="desktop-file-utils" -update_site="${homepage}download.html" distfiles="http://arch.p5n.pp.ru/~sergej/dl/2014/${pkgname}-${version}.tar.gz" checksum="3feec7d43ca6cb5393645fe0df893d9f7bf5334849fa8abd4c5c3ee775c8cac3" diff --git a/srcpkgs/gpsbabel/update b/srcpkgs/gpsbabel/update new file mode 100644 index 0000000000..7102ec7a33 --- /dev/null +++ b/srcpkgs/gpsbabel/update @@ -0,0 +1 @@ +site="${homepage}download.html" diff --git a/srcpkgs/graphite/template b/srcpkgs/graphite/template index 59362924dd..51e09420bf 100644 --- a/srcpkgs/graphite/template +++ b/srcpkgs/graphite/template @@ -11,7 +11,6 @@ short_desc="Reimplementation of the SIL Graphite text processing engine" maintainer="Juan RP " homepage="http://projects.palaso.org/projects/graphitedev" license="LGPL-2.1, GPL-2, BSD" -update_pkgname=graphite2 distfiles="${SOURCEFORGE_SITE}/silgraphite/graphite2-${version}.tgz" checksum=4bc3d5168029bcc0aa00eb2c973269d29407be2796ff56f9c80e10736bd8b003 diff --git a/srcpkgs/graphite/update b/srcpkgs/graphite/update new file mode 100644 index 0000000000..40a2fe420b --- /dev/null +++ b/srcpkgs/graphite/update @@ -0,0 +1 @@ +pkgname=graphite2 diff --git a/srcpkgs/gsfonts/template b/srcpkgs/gsfonts/template index c04b77b8bb..8814d7a08e 100644 --- a/srcpkgs/gsfonts/template +++ b/srcpkgs/gsfonts/template @@ -9,7 +9,6 @@ depends="${makedepends}" font_dirs="/usr/share/fonts/Type1" short_desc="Ghostscript standard Type1 fonts" homepage="http://sourceforge.net/projects/gs-fonts/" -update_pkgname="ghostscript-fonts-std" license="GPL-2" maintainer="Juan RP " distfiles="${SOURCEFORGE_SITE}/ghostscript/ghostscript-fonts-std-$version.tar.gz" diff --git a/srcpkgs/gsfonts/update b/srcpkgs/gsfonts/update new file mode 100644 index 0000000000..d2f9b3695e --- /dev/null +++ b/srcpkgs/gsfonts/update @@ -0,0 +1 @@ +pkgname="ghostscript-fonts-std" diff --git a/srcpkgs/gst-plugins-base/template b/srcpkgs/gst-plugins-base/template index f471f6c2ed..7ac43fb6f7 100644 --- a/srcpkgs/gst-plugins-base/template +++ b/srcpkgs/gst-plugins-base/template @@ -13,7 +13,6 @@ makedepends="alsa-lib-devel gstreamer-devel libgudev-devel libtheora-devel short_desc="GStreamer Base Plug-ins" maintainer="Juan RP " homepage="http://gstreamer.freedesktop.org/" -update_ignore="1.*" license="GPL-2, LGPL-2.1" distfiles="http://gstreamer.freedesktop.org/src/$pkgname/$pkgname-$version.tar.xz" checksum=1fe45c3894903001d4d008b0713dab089f53726dcb5842d5b40c2595a984e64a diff --git a/srcpkgs/gst-plugins-base/update b/srcpkgs/gst-plugins-base/update new file mode 100644 index 0000000000..923fcac1f4 --- /dev/null +++ b/srcpkgs/gst-plugins-base/update @@ -0,0 +1 @@ +ignore="1.*" diff --git a/srcpkgs/gst-plugins-base1/template b/srcpkgs/gst-plugins-base1/template index 39f24afe79..71a6c55762 100644 --- a/srcpkgs/gst-plugins-base1/template +++ b/srcpkgs/gst-plugins-base1/template @@ -17,7 +17,6 @@ depends="orc>=0.4.18 gstreamer1>=${version}" short_desc="GStreamer Base Plug-ins (v1.x)" maintainer="Juan RP " homepage="http://gstreamer.freedesktop.org/" -update_pkgname="gst-plugins-base" license="GPL-2, LGPL-2.1" distfiles="http://gstreamer.freedesktop.org/src/${pkgname/1/}/${pkgname/1/}-${version#*:}.tar.xz" checksum=77bd8199e7a312d3d71de9b7ddf761a3b78560a2c2a80829d0815ca39cbd551d diff --git a/srcpkgs/gst-plugins-base1/update b/srcpkgs/gst-plugins-base1/update new file mode 100644 index 0000000000..6b0cec125c --- /dev/null +++ b/srcpkgs/gst-plugins-base1/update @@ -0,0 +1 @@ +pkgname="gst-plugins-base" diff --git a/srcpkgs/gst-plugins-good/template b/srcpkgs/gst-plugins-good/template index 86314bf601..f7d7322ff0 100644 --- a/srcpkgs/gst-plugins-good/template +++ b/srcpkgs/gst-plugins-good/template @@ -16,7 +16,6 @@ makedepends="libpng-devel>=1.6 libxml2-devel short_desc="GStreamer set of well-maintained good plug-ins" maintainer="Juan RP " homepage="http://gstreamer.freedesktop.org/" -update_ignore="1.*" license="LGPL-2.1" distfiles="http://gstreamer.freedesktop.org/src/$pkgname/$pkgname-$version.tar.xz" checksum=77a8436a7c0a15f876bad29616835046890df2bcaf72da02151bd91e3d292b64 diff --git a/srcpkgs/gst-plugins-good/update b/srcpkgs/gst-plugins-good/update new file mode 100644 index 0000000000..923fcac1f4 --- /dev/null +++ b/srcpkgs/gst-plugins-good/update @@ -0,0 +1 @@ +ignore="1.*" diff --git a/srcpkgs/gst-plugins-good1/template b/srcpkgs/gst-plugins-good1/template index c537e8cd38..5945a48c45 100644 --- a/srcpkgs/gst-plugins-good1/template +++ b/srcpkgs/gst-plugins-good1/template @@ -20,7 +20,6 @@ depends="gst-plugins-base1>=${version}" short_desc="GStreamer set of well-maintained good plug-ins (1.x)" maintainer="Juan RP " homepage="http://gstreamer.freedesktop.org/" -update_pkgname="gst-plugins-good" license="LGPL-2.1" distfiles="http://gstreamer.freedesktop.org/src/${pkgname/1/}/${pkgname/1/}-${version#*:}.tar.xz" checksum=79b1b5f3f7bcaa8a615202eb5e176121eeb8336960f70687e536ad78dbc7e641 diff --git a/srcpkgs/gst-plugins-good1/update b/srcpkgs/gst-plugins-good1/update new file mode 100644 index 0000000000..cb34cc214a --- /dev/null +++ b/srcpkgs/gst-plugins-good1/update @@ -0,0 +1 @@ +pkgname="gst-plugins-good" diff --git a/srcpkgs/gstreamer/template b/srcpkgs/gstreamer/template index 8f660552dc..180f7bb216 100644 --- a/srcpkgs/gstreamer/template +++ b/srcpkgs/gstreamer/template @@ -9,7 +9,6 @@ makedepends="libxml2-devel libglib-devel" short_desc="Core GStreamer libraries and elements" maintainer="Juan RP " homepage="http://gstreamer.freedesktop.org/" -update_ignore="1.*" license="LGPL-2.1" distfiles="http://gstreamer.freedesktop.org/src/$pkgname/$pkgname-$version.tar.xz" checksum=9151aa108c177054387885763fa0e433e76780f7c5655c70a5390f2a6c6871da diff --git a/srcpkgs/gstreamer/update b/srcpkgs/gstreamer/update new file mode 100644 index 0000000000..923fcac1f4 --- /dev/null +++ b/srcpkgs/gstreamer/update @@ -0,0 +1 @@ +ignore="1.*" diff --git a/srcpkgs/gstreamer1/template b/srcpkgs/gstreamer1/template index cd509d5be4..2661ed9de8 100644 --- a/srcpkgs/gstreamer1/template +++ b/srcpkgs/gstreamer1/template @@ -11,7 +11,6 @@ makedepends="libxml2-devel libglib-devel $(vopt_if gir gobject-introspection)" short_desc="Core GStreamer libraries and elements (1.x)" maintainer="Juan RP " homepage="http://gstreamer.freedesktop.org/" -update_pkgname="gstreamer" license="LGPL-2.1" distfiles="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${version#*:}.tar.xz" checksum=40801aa7f979024526258a0e94707ba42b8ab6f7d2206e56adbc4433155cb0ae diff --git a/srcpkgs/gstreamer1/update b/srcpkgs/gstreamer1/update new file mode 100644 index 0000000000..4ed5b568b8 --- /dev/null +++ b/srcpkgs/gstreamer1/update @@ -0,0 +1 @@ +pkgname="gstreamer" diff --git a/srcpkgs/gtest/template b/srcpkgs/gtest/template index aaa34dab08..aa35c6987b 100644 --- a/srcpkgs/gtest/template +++ b/srcpkgs/gtest/template @@ -8,8 +8,6 @@ maintainer="Enno Boland " license="MIT" hostmakedepends="unzip cmake" homepage="https://code.google.com/p/googletest" -update_pkgname="googletest" -update_pattern="gtest-\K[\d.]+" distfiles="https://googletest.googlecode.com/files/${pkgname}-${version}.zip" checksum=247ca18dd83f53deb1328be17e4b1be31514cedfc1e3424f672bf11fd7e0d60d configure_args="-DBUILD_SHARED_LIBS=ON -DCMAKE_SKIP_RPATH=ON" diff --git a/srcpkgs/gtest/update b/srcpkgs/gtest/update new file mode 100644 index 0000000000..4547f3e7d6 --- /dev/null +++ b/srcpkgs/gtest/update @@ -0,0 +1,2 @@ +pkgname="googletest" +pattern="gtest-\K[\d.]+" diff --git a/srcpkgs/gtk+3/template b/srcpkgs/gtk+3/template index 245067f671..2a6f2fcbd6 100644 --- a/srcpkgs/gtk+3/template +++ b/srcpkgs/gtk+3/template @@ -11,7 +11,6 @@ configure_args="--disable-schemas-compile --enable-gtk2-dependency short_desc="The GTK+ toolkit (v3)" maintainer="Juan RP " homepage="http://www.gtk.org/" -update_pkgname="gtk+" license="LGPL-2.1" distfiles="${GNOME_SITE}/gtk+/${version%.*}/gtk+-${version}.tar.xz" checksum=fb9914b04f218c1afb4820ea492f3c6ab6d6993cc6634ecade8303678d05a46e diff --git a/srcpkgs/gtk+3/update b/srcpkgs/gtk+3/update new file mode 100644 index 0000000000..42e6e4506c --- /dev/null +++ b/srcpkgs/gtk+3/update @@ -0,0 +1 @@ +pkgname="gtk+" diff --git a/srcpkgs/gtk-engine-murrine/template b/srcpkgs/gtk-engine-murrine/template index 056ca18a89..2b1b438928 100644 --- a/srcpkgs/gtk-engine-murrine/template +++ b/srcpkgs/gtk-engine-murrine/template @@ -12,6 +12,5 @@ hostmakedepends="pkg-config intltool" makedepends="gtk+-devel" maintainer="Steven R " homepage="http://cimitan.com/murrine/project/murrine" -update_pkgname="murrine" license="LGPL-3" short_desc="GTK2 engine to make your desktop look like a murrina" diff --git a/srcpkgs/gtk-engine-murrine/update b/srcpkgs/gtk-engine-murrine/update new file mode 100644 index 0000000000..68427bdede --- /dev/null +++ b/srcpkgs/gtk-engine-murrine/update @@ -0,0 +1 @@ +pkgname="murrine" diff --git a/srcpkgs/gtk2-engines/template b/srcpkgs/gtk2-engines/template index 97552a8bd6..ed17e5e6db 100644 --- a/srcpkgs/gtk2-engines/template +++ b/srcpkgs/gtk2-engines/template @@ -10,7 +10,6 @@ makedepends="gtk+-devel" short_desc="GTK+2 Theme engines" maintainer="Juan RP " homepage="http://live.gnome.org/GnomeArt" -update_pkgname="gtk-engines" license="GPL-2" distfiles="ftp://ftp.archlinux.org/other/gtk-engines/gtk-engines-${version}.tar.gz" checksum=6c38c297c3b95d667c5159c1f379384806fedb53a828d44ac73ff54570ed185b diff --git a/srcpkgs/gtk2-engines/update b/srcpkgs/gtk2-engines/update new file mode 100644 index 0000000000..9772992356 --- /dev/null +++ b/srcpkgs/gtk2-engines/update @@ -0,0 +1 @@ +pkgname="gtk-engines" diff --git a/srcpkgs/gtkmm2/template b/srcpkgs/gtkmm2/template index c7a1d01cb2..5cf752ccb0 100644 --- a/srcpkgs/gtkmm2/template +++ b/srcpkgs/gtkmm2/template @@ -9,7 +9,6 @@ hostmakedepends="pkg-config" makedepends="gtk+-devel libsigc++-devel atkmm-devel pangomm-devel libXcursor-devel" short_desc="C++ bindings for The GTK+ toolkit (v2)" homepage="http://www.gtkmm.org/" -update_pkgname="gtkmm" license="LGPL-2.1" maintainer="Juan RP " distfiles="${GNOME_SITE}/gtkmm/2.24/gtkmm-$version.tar.xz" diff --git a/srcpkgs/gtkmm2/update b/srcpkgs/gtkmm2/update new file mode 100644 index 0000000000..50088372dd --- /dev/null +++ b/srcpkgs/gtkmm2/update @@ -0,0 +1 @@ +pkgname="gtkmm" diff --git a/srcpkgs/gtksourceview2/template b/srcpkgs/gtksourceview2/template index 587a0f623e..3f40939222 100644 --- a/srcpkgs/gtksourceview2/template +++ b/srcpkgs/gtksourceview2/template @@ -10,7 +10,6 @@ makedepends="gtk+-devel libxml2-devel" short_desc="Text widget that extends GTK+ GtkTextView widget" maintainer="Juan RP " homepage="http://www.gnome.org" -update_pkgname="gtksourceview" license="GPL-2" distfiles="${GNOME_SITE}/gtksourceview/2.10/gtksourceview-${version}.tar.bz2" checksum=c585773743b1df8a04b1be7f7d90eecdf22681490d6810be54c81a7ae152191e diff --git a/srcpkgs/gtksourceview2/update b/srcpkgs/gtksourceview2/update new file mode 100644 index 0000000000..10a2e75e30 --- /dev/null +++ b/srcpkgs/gtksourceview2/update @@ -0,0 +1 @@ +pkgname="gtksourceview" diff --git a/srcpkgs/gummiboot/template b/srcpkgs/gummiboot/template index ae2eeeca2d..0719eb0f14 100644 --- a/srcpkgs/gummiboot/template +++ b/srcpkgs/gummiboot/template @@ -9,8 +9,6 @@ short_desc="Simple UEFI Boot Manager" maintainer="Eivind Uggedal " license="LGPL-2.1" homepage="http://freedesktop.org/wiki/Software/gummiboot" -update_site="http://cgit.freedesktop.org/${pkgname}" -update_pattern='/gummiboot/tag/\?id=\K\d+' distfiles="http://cgit.freedesktop.org/${pkgname}/snapshot/${pkgname}-${version}.tar.gz" checksum=78f47105bab676b8ff2d19c1deedaa4c371f10e4fd49059f9d588c6f97544a9b only_for_archs="i686 x86_64" diff --git a/srcpkgs/gummiboot/update b/srcpkgs/gummiboot/update new file mode 100644 index 0000000000..61954e94ac --- /dev/null +++ b/srcpkgs/gummiboot/update @@ -0,0 +1,2 @@ +site="http://cgit.freedesktop.org/${pkgname}" +pattern='/gummiboot/tag/\?id=\K\d+' diff --git a/srcpkgs/gwenhywfar/template b/srcpkgs/gwenhywfar/template index 0bc994cdc3..7e6340768e 100644 --- a/srcpkgs/gwenhywfar/template +++ b/srcpkgs/gwenhywfar/template @@ -10,8 +10,6 @@ configure_args="--disable-binreloc" maintainer="Enno Boland " license="LGPL" homepage="http://www.aquamaniac.de" -update_site="http://www.aquamaniac.de/sites/download/packages.php" -update_pattern='gwenhywfar-\K[\d.]+(beta)?' short_desc="OS abstraction functions for various projects" distfiles="http://www2.aquamaniac.de/sites/download/download.php?package=01&release=${_dnrel}&file=01&dummy=gwenhywfar-$version.tar.gz" checksum=4beca892c1235548ea0ae30132a6d2e57911c22340746585395ccb01d84ec72b diff --git a/srcpkgs/gwenhywfar/update b/srcpkgs/gwenhywfar/update new file mode 100644 index 0000000000..cd9a50abe3 --- /dev/null +++ b/srcpkgs/gwenhywfar/update @@ -0,0 +1,2 @@ +site="http://www.aquamaniac.de/sites/download/packages.php" +pattern='gwenhywfar-\K[\d.]+(beta)?' diff --git a/srcpkgs/iat/template b/srcpkgs/iat/template index 9f31c662d3..427bc69709 100644 --- a/srcpkgs/iat/template +++ b/srcpkgs/iat/template @@ -7,7 +7,6 @@ short_desc="A tool for detecting the structure of many types of CD/DVD image" maintainer="Juan RP " license="GPL-3" homepage="http://sourceforge.net/projects/iat.berlios/" -update_ignore="*.win32" distfiles="${SOURCEFORGE_SITE}/${pkgname}.berlios/${pkgname}-${version}.tar.gz" checksum=b25d57fde28a02b2d87cd49fd1478b039adbd836351879a654fea14c27764b21 diff --git a/srcpkgs/iat/update b/srcpkgs/iat/update new file mode 100644 index 0000000000..70c67e9cf0 --- /dev/null +++ b/srcpkgs/iat/update @@ -0,0 +1 @@ +ignore="*.win32" diff --git a/srcpkgs/id3lib/template b/srcpkgs/id3lib/template index 1702c8b6a7..68981aa67b 100644 --- a/srcpkgs/id3lib/template +++ b/srcpkgs/id3lib/template @@ -9,7 +9,6 @@ short_desc="Library for reading, writing, and manipulating ID3v1 and ID3v2 tags" maintainer="Christian Neukirchen " license="LGPL-3" homepage="http://id3lib.sourceforge.net/" -update_ignore="*binaries 305 2000*" distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz" checksum=2749cc3c0cd7280b299518b1ddf5a5bcfe2d1100614519b68702230e26c7d079 diff --git a/srcpkgs/id3lib/update b/srcpkgs/id3lib/update new file mode 100644 index 0000000000..a4eff166ff --- /dev/null +++ b/srcpkgs/id3lib/update @@ -0,0 +1 @@ +ignore="*binaries 305 2000*" diff --git a/srcpkgs/ilmbase/template b/srcpkgs/ilmbase/template index dc212a77f5..b3d7bf0f6a 100644 --- a/srcpkgs/ilmbase/template +++ b/srcpkgs/ilmbase/template @@ -7,7 +7,6 @@ short_desc="Base libraries from ILM for OpenEXR" maintainer="Juan RP " license="BSD" homepage="http://www.openexr.com" -update_ignore="*.TEST" distfiles="http://download.savannah.nongnu.org/releases/openexr/$pkgname-$version.tar.gz" checksum=ecf815b60695555c1fbc73679e84c7c9902f4e8faa6e8000d2f905b8b86cedc7 nocross=yes diff --git a/srcpkgs/ilmbase/update b/srcpkgs/ilmbase/update new file mode 100644 index 0000000000..2a2be6dc4c --- /dev/null +++ b/srcpkgs/ilmbase/update @@ -0,0 +1 @@ +ignore="*.TEST" diff --git a/srcpkgs/inkscape/template b/srcpkgs/inkscape/template index c2174ef85d..8fa7eaa68a 100644 --- a/srcpkgs/inkscape/template +++ b/srcpkgs/inkscape/template @@ -12,7 +12,6 @@ depends="desktop-file-utils hicolor-icon-theme" short_desc="Vector-based drawing program" maintainer="Juan RP " homepage="http://inkscape.org/" -update_ignore="*pre*" license="GPL-2, LGPL-2.1" distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname-$version.tar.bz2" checksum=2b6ce684f9f2a0691ab454656424555cbda131db78e13973360684bc833ad969 diff --git a/srcpkgs/inkscape/update b/srcpkgs/inkscape/update new file mode 100644 index 0000000000..8758aff9cb --- /dev/null +++ b/srcpkgs/inkscape/update @@ -0,0 +1 @@ +ignore="*pre*" diff --git a/srcpkgs/intel-ucode/template b/srcpkgs/intel-ucode/template index 92b3b90af1..6989ee898c 100644 --- a/srcpkgs/intel-ucode/template +++ b/srcpkgs/intel-ucode/template @@ -8,7 +8,6 @@ short_desc="Microcode update files for Intel CPUs" maintainer="Juan RP " license="INTEL Software License Agreement" homepage="http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&keyword=%22microcode%22" -update_pattern='\d{8}(?=
\(Latest\))' distfiles="http://downloadmirror.intel.com/24290/eng/microcode-${version}.tgz" checksum=ea6c0ee21d1fbf261f093176a78089c21411e5fe0e2c35b258cedf2b39987e15 diff --git a/srcpkgs/intel-ucode/update b/srcpkgs/intel-ucode/update new file mode 100644 index 0000000000..cf9261f2b9 --- /dev/null +++ b/srcpkgs/intel-ucode/update @@ -0,0 +1 @@ +pattern='\d{8}(?=
\(Latest\))' diff --git a/srcpkgs/iperf/template b/srcpkgs/iperf/template index 2135c4aa1a..f2fbeea5a9 100644 --- a/srcpkgs/iperf/template +++ b/srcpkgs/iperf/template @@ -8,7 +8,6 @@ short_desc="Perform network throughput tests" maintainer="Christian Neukirchen " license="custom" homepage="http://iperf.sourceforge.net" -update_pattern='iperf-\K[\d.]+\d+' distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz" checksum=636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b diff --git a/srcpkgs/iperf/update b/srcpkgs/iperf/update new file mode 100644 index 0000000000..f2bc64c78b --- /dev/null +++ b/srcpkgs/iperf/update @@ -0,0 +1 @@ +pattern='iperf-\K[\d.]+\d+' diff --git a/srcpkgs/ipw2100-firmware/template b/srcpkgs/ipw2100-firmware/template index a77d32d297..654809605b 100644 --- a/srcpkgs/ipw2100-firmware/template +++ b/srcpkgs/ipw2100-firmware/template @@ -8,7 +8,6 @@ create_wrksrc=yes noarch="yes" short_desc="Firmware for the Intel PRO/Wireless 2100 wifi cards" homepage="http://ipw2100.sourceforge.net/" -update_pkgname="${_distname}" license="Custom" maintainer="Juan RP " distfiles="http://firmware.openbsd.org/firmware-dist/${_distname}-${version}.tgz" diff --git a/srcpkgs/ipw2100-firmware/update b/srcpkgs/ipw2100-firmware/update new file mode 100644 index 0000000000..5695606d13 --- /dev/null +++ b/srcpkgs/ipw2100-firmware/update @@ -0,0 +1 @@ +pkgname="${_distname}" diff --git a/srcpkgs/ipw2200-firmware/template b/srcpkgs/ipw2200-firmware/template index c2d9729afc..38fa016a6b 100644 --- a/srcpkgs/ipw2200-firmware/template +++ b/srcpkgs/ipw2200-firmware/template @@ -7,7 +7,6 @@ noarch="yes" wrksrc="${_distname}-${version}" short_desc="Firmware for the Intel PRO/Wireless 2200BG wifi cards" homepage="http://ipw2200.sourceforge.net/" -update_pkgname="${_distname}" license="Custom" maintainer="Juan RP " distfiles="http://firmware.openbsd.org/firmware-dist/${_distname}-${version}.tgz" diff --git a/srcpkgs/ipw2200-firmware/update b/srcpkgs/ipw2200-firmware/update new file mode 100644 index 0000000000..5695606d13 --- /dev/null +++ b/srcpkgs/ipw2200-firmware/update @@ -0,0 +1 @@ +pkgname="${_distname}" diff --git a/srcpkgs/jack/template b/srcpkgs/jack/template index 8b39bb6ff9..5afa78241d 100644 --- a/srcpkgs/jack/template +++ b/srcpkgs/jack/template @@ -10,8 +10,6 @@ short_desc="JACK Audio Connection Kit low-latency sound server (pro audio)" maintainer="Juan RP " license="GPL-2, LGPL-2.1" homepage="http://jackaudio.org/" -update_site="http://jackaudio.org/downloads/" -update_ignore="OSX*" distfiles="https://dl.dropboxusercontent.com/u/28869550/jack-${version}.tar.bz2" checksum=5bc6336e6ac9799e3cb241915e2ba5d01b030589bbb2afae39579a59ef0f2f56 diff --git a/srcpkgs/jack/update b/srcpkgs/jack/update new file mode 100644 index 0000000000..8615ac7f67 --- /dev/null +++ b/srcpkgs/jack/update @@ -0,0 +1,2 @@ +site="http://jackaudio.org/downloads/" +ignore="OSX*" diff --git a/srcpkgs/java-commons-io/template b/srcpkgs/java-commons-io/template index 909242497e..1ac4ff58ff 100644 --- a/srcpkgs/java-commons-io/template +++ b/srcpkgs/java-commons-io/template @@ -5,7 +5,6 @@ version=2.4 revision=3 maintainer="Carlo Dormeletti " homepage="http://commons.apache.org/io" -update_pkgname="${_origname}" license="Apache-2.0" short_desc="IO related classes for Java." hostmakedepends="oracle-jdk apache-ant" diff --git a/srcpkgs/java-commons-io/update b/srcpkgs/java-commons-io/update new file mode 100644 index 0000000000..f739bb2c89 --- /dev/null +++ b/srcpkgs/java-commons-io/update @@ -0,0 +1 @@ +pkgname="${_origname}" diff --git a/srcpkgs/jq/template b/srcpkgs/jq/template index e339a1b13c..9da86eef52 100644 --- a/srcpkgs/jq/template +++ b/srcpkgs/jq/template @@ -7,7 +7,6 @@ short_desc="Command-line JSON processor" maintainer="Christian Neukirchen " license="custom" homepage="http://stedolan.github.io/jq/" -update_site="http://stedolan.github.io/jq/download/" distfiles="http://stedolan.github.io/jq/download/source/${pkgname}-${version}.tar.gz" checksum=998c41babeb57b4304e65b4eb73094279b3ab1e63801b6b4bddd487ce009b39d diff --git a/srcpkgs/jq/update b/srcpkgs/jq/update new file mode 100644 index 0000000000..5952b47d8f --- /dev/null +++ b/srcpkgs/jq/update @@ -0,0 +1 @@ +site="http://stedolan.github.io/jq/download/" diff --git a/srcpkgs/json-c/template b/srcpkgs/json-c/template index e3bda60a48..564dfacfa9 100644 --- a/srcpkgs/json-c/template +++ b/srcpkgs/json-c/template @@ -8,7 +8,6 @@ short_desc="A JSON implementation in C" maintainer="Juan RP " license="MIT" homepage="http://oss.metaparadigm.com/$pkgname" -update_site="https://s3.amazonaws.com/json-c_releases" distfiles="https://s3.amazonaws.com/json-c_releases/releases/$pkgname-$version.tar.gz" checksum=000c01b2b3f82dcb4261751eb71f1b084404fb7d6a282f06074d3c17078b9f3f diff --git a/srcpkgs/json-c/update b/srcpkgs/json-c/update new file mode 100644 index 0000000000..3040455d3c --- /dev/null +++ b/srcpkgs/json-c/update @@ -0,0 +1 @@ +site="https://s3.amazonaws.com/json-c_releases" diff --git a/srcpkgs/jupp/template b/srcpkgs/jupp/template index f6f4cda1e7..59275297f8 100644 --- a/srcpkgs/jupp/template +++ b/srcpkgs/jupp/template @@ -17,7 +17,6 @@ short_desc="Portable version of JOE’s Own Editor" maintainer="Ypnose " license="GPL-1" homepage="https://www.mirbsd.org/jupp.htm" -update_pkgname="joe" distfiles="https://www.mirbsd.org/MirOS/dist/${pkgname}/joe-${version}.tgz" checksum=be4d16cb44f002a3f6f5069471096c53d9c184b7366ef1a055422d2f0006851f diff --git a/srcpkgs/jupp/update b/srcpkgs/jupp/update new file mode 100644 index 0000000000..45f2a1c1e7 --- /dev/null +++ b/srcpkgs/jupp/update @@ -0,0 +1 @@ +pkgname="joe" diff --git a/srcpkgs/kernel-libc-headers/template b/srcpkgs/kernel-libc-headers/template index bbb9137187..4dfc43b906 100644 --- a/srcpkgs/kernel-libc-headers/template +++ b/srcpkgs/kernel-libc-headers/template @@ -10,7 +10,6 @@ wrksrc=linux-${version} short_desc="The Linux API headers for userland development" license="GPL-2" homepage="http://www.kernel.org" -update_pkgname="linux" distfiles="http://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz" checksum=2c9c002cf9618962883d82ba3e1caaea29af4ea37147a82bad422afdc8d21dc2 diff --git a/srcpkgs/kernel-libc-headers/update b/srcpkgs/kernel-libc-headers/update new file mode 100644 index 0000000000..07d190a88e --- /dev/null +++ b/srcpkgs/kernel-libc-headers/update @@ -0,0 +1 @@ +pkgname="linux" diff --git a/srcpkgs/kernel-manpages/template b/srcpkgs/kernel-manpages/template index 8d1259c895..07060ee84a 100644 --- a/srcpkgs/kernel-manpages/template +++ b/srcpkgs/kernel-manpages/template @@ -7,7 +7,6 @@ noarch=yes wrksrc=linux-${version} hostmakedepends="which perl xmlto" homepage="http://www.kernel.org" -update_pkgname="linux" license="GPL-2" short_desc="Linux kernel development manual pages" distfiles="http://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz" diff --git a/srcpkgs/kernel-manpages/update b/srcpkgs/kernel-manpages/update new file mode 100644 index 0000000000..07d190a88e --- /dev/null +++ b/srcpkgs/kernel-manpages/update @@ -0,0 +1 @@ +pkgname="linux" diff --git a/srcpkgs/kernel-uml/template b/srcpkgs/kernel-uml/template index 92ec076293..e7af1ead02 100644 --- a/srcpkgs/kernel-uml/template +++ b/srcpkgs/kernel-uml/template @@ -7,7 +7,6 @@ hostmakedepends="perl bc" makedepends="libpcap-devel uml-utilities" depends="uml-utilities" homepage="http://www.kernel.org" -update_pkgname="linux" license="GPL-2" short_desc="Kernel ${version} for User Mode Linux" distfiles="http://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz" diff --git a/srcpkgs/kernel-uml/update b/srcpkgs/kernel-uml/update new file mode 100644 index 0000000000..07d190a88e --- /dev/null +++ b/srcpkgs/kernel-uml/update @@ -0,0 +1 @@ +pkgname="linux" diff --git a/srcpkgs/kpartx/template b/srcpkgs/kpartx/template index 2b6a57edd1..f67bc134f2 100644 --- a/srcpkgs/kpartx/template +++ b/srcpkgs/kpartx/template @@ -10,6 +10,5 @@ short_desc="Create device maps from partition tables" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://christophe.varoqui.free.fr/" -update_pattern='multipath-tools-\K[\d.]+\d+' distfiles="http://christophe.varoqui.free.fr/multipath-tools/multipath-tools-${version}.tar.bz2" checksum=f13cf1eb84e94e83b2019e68f7965526903c13e94246db43965d181668a0a6f9 diff --git a/srcpkgs/kpartx/update b/srcpkgs/kpartx/update new file mode 100644 index 0000000000..49c3c0d45e --- /dev/null +++ b/srcpkgs/kpartx/update @@ -0,0 +1 @@ +pattern='multipath-tools-\K[\d.]+\d+' diff --git a/srcpkgs/ladspa-sdk/template b/srcpkgs/ladspa-sdk/template index dcb6d742aa..a113f18177 100644 --- a/srcpkgs/ladspa-sdk/template +++ b/srcpkgs/ladspa-sdk/template @@ -9,7 +9,6 @@ short_desc="Linux Audio Developer's Simple Plugin API (LADSPA)" maintainer="Juan RP " homepage="http://www.ladspa.org/" license="LGPL-2.1" -update_pkgname=ladspa_sdk distfiles="http://www.ladspa.org/download/ladspa_sdk.tgz" checksum=b5ed3f4f253a0f6c1b7a1f4b8cf62376ca9f51d999650dd822650c43852d306b diff --git a/srcpkgs/ladspa-sdk/update b/srcpkgs/ladspa-sdk/update new file mode 100644 index 0000000000..deb683e74d --- /dev/null +++ b/srcpkgs/ladspa-sdk/update @@ -0,0 +1 @@ +pkgname=ladspa_sdk diff --git a/srcpkgs/lame/template b/srcpkgs/lame/template index a1911c7331..776b701b5e 100644 --- a/srcpkgs/lame/template +++ b/srcpkgs/lame/template @@ -10,7 +10,6 @@ short_desc="Fast, high quality MP3 encoder" maintainer="Juan RP " license="LGPL-2.1" homepage="http://lame.sourceforge.net" -update_ignore="398" distfiles="${SOURCEFORGE_SITE}/lame/lame-${version}.tar.gz" checksum=24346b4158e4af3bd9f2e194bb23eb473c75fb7377011523353196b19b9a23ff diff --git a/srcpkgs/lame/update b/srcpkgs/lame/update new file mode 100644 index 0000000000..4367a46707 --- /dev/null +++ b/srcpkgs/lame/update @@ -0,0 +1 @@ +ignore="398" diff --git a/srcpkgs/laptop-mode/template b/srcpkgs/laptop-mode/template index 75f0d6bb3e..bf332d68ac 100644 --- a/srcpkgs/laptop-mode/template +++ b/srcpkgs/laptop-mode/template @@ -8,8 +8,6 @@ short_desc="Laptop power saving package for Linux systems" maintainer="Juan RP " license="GPL-2" homepage="http://samwel.tk/laptop_mode/" -update_pkgname="${pkgname}-tools" -update_site="${homepage}packages/tarball" distfiles="${homepage}/tools/downloads/$pkgname-tools_$version.tar.gz" checksum=0e8488d6112fa7edfa7e4b1084b16f8c7c6726d935029e4afd7d7034caed5f62 conf_files=" diff --git a/srcpkgs/laptop-mode/update b/srcpkgs/laptop-mode/update new file mode 100644 index 0000000000..028738f312 --- /dev/null +++ b/srcpkgs/laptop-mode/update @@ -0,0 +1,2 @@ +pkgname="${pkgname}-tools" +site="${homepage}packages/tarball" diff --git a/srcpkgs/less/template b/srcpkgs/less/template index a493f08000..88ff792e49 100644 --- a/srcpkgs/less/template +++ b/srcpkgs/less/template @@ -9,6 +9,5 @@ short_desc="Pager program similar to more(1)" maintainer="Juan RP " license="GPL-3" homepage="http://www.greenwoodsoftware.com/less" -update_site="${homepage}/download.html" distfiles="${homepage}/less-${version}.tar.gz" checksum=37f613fa9a526378788d790a92217d59b523574cf7159f6538da8564b3fb27f8 diff --git a/srcpkgs/less/update b/srcpkgs/less/update new file mode 100644 index 0000000000..8ccb863442 --- /dev/null +++ b/srcpkgs/less/update @@ -0,0 +1 @@ +site="${homepage}/download.html" diff --git a/srcpkgs/liba52/template b/srcpkgs/liba52/template index 4b28af3605..dd239d62d0 100644 --- a/srcpkgs/liba52/template +++ b/srcpkgs/liba52/template @@ -10,7 +10,6 @@ short_desc="Free ATSC A/52 stream decoder" homepage="http://liba52.sourceforge.net/" license="GPL-2" maintainer="Juan RP " -update_pkgname=a52dec distfiles="http://liba52.sourceforge.net/files/a52dec-$version.tar.gz" checksum=a21d724ab3b3933330194353687df82c475b5dfb997513eef4c25de6c865ec33 diff --git a/srcpkgs/liba52/update b/srcpkgs/liba52/update new file mode 100644 index 0000000000..9528f5de3b --- /dev/null +++ b/srcpkgs/liba52/update @@ -0,0 +1 @@ +pkgname=a52dec diff --git a/srcpkgs/libcap-pam/template b/srcpkgs/libcap-pam/template index 2e31ecf27e..37b4d85516 100644 --- a/srcpkgs/libcap-pam/template +++ b/srcpkgs/libcap-pam/template @@ -10,7 +10,6 @@ short_desc="POSIX.1e capabilities suite - PAM module" maintainer="Juan RP " homepage="http://sites.google.com/site/fullycapable/" license="GPL-2" -update_pkgname=libcap distfiles="${KERNEL_SITE}/libs/security/linux-privs/libcap2/libcap-$version.tar.xz" checksum=cee4568f78dc851d726fc93f25f4ed91cc223b1fe8259daa4a77158d174e6c65 diff --git a/srcpkgs/libcap-pam/update b/srcpkgs/libcap-pam/update new file mode 100644 index 0000000000..75b2b03110 --- /dev/null +++ b/srcpkgs/libcap-pam/update @@ -0,0 +1 @@ +pkgname=libcap diff --git a/srcpkgs/libcxx/template b/srcpkgs/libcxx/template index 82f4320306..8e02ac75f1 100644 --- a/srcpkgs/libcxx/template +++ b/srcpkgs/libcxx/template @@ -8,7 +8,6 @@ short_desc="New implementation of the C++ standard library, targeting C++11" maintainer="Juan RP " homepage="http://libcxx.llvm.org" license="BSD" -update_site="http://www.llvm.org/releases/download.html" distfiles="http://www.llvm.org/releases/${version}/${pkgname}-${version}.src.tar.gz" checksum=bd9f200279f0eb19fc28ed2d9d607dfd38e2e7d92bf52e7fb2161f89212e0deb diff --git a/srcpkgs/libcxx/update b/srcpkgs/libcxx/update new file mode 100644 index 0000000000..49e4f464a9 --- /dev/null +++ b/srcpkgs/libcxx/update @@ -0,0 +1 @@ +site="http://www.llvm.org/releases/download.html" diff --git a/srcpkgs/libdmapsharing/template b/srcpkgs/libdmapsharing/template index 1c292cec2c..de36b9b13c 100644 --- a/srcpkgs/libdmapsharing/template +++ b/srcpkgs/libdmapsharing/template @@ -11,7 +11,6 @@ short_desc="A library that implements the DMAP family of protocols" maintainer="Juan RP " license="LGPL-2.1" homepage="http://www.flyn.org/projects/libdmapsharing/index.html" -update_site="http://www.flyn.org/projects/libdmapsharing/download.html" distfiles="http://www.flyn.org/projects/libdmapsharing/$pkgname-$version.tar.gz" checksum=a7058a282b3151e46011bab00befccb74e2baef04a093c184dc6618778c5044f diff --git a/srcpkgs/libdmapsharing/update b/srcpkgs/libdmapsharing/update new file mode 100644 index 0000000000..7bb1de3266 --- /dev/null +++ b/srcpkgs/libdmapsharing/update @@ -0,0 +1 @@ +site="http://www.flyn.org/projects/libdmapsharing/download.html" diff --git a/srcpkgs/libee/template b/srcpkgs/libee/template index 199d8bae7f..7f3fdf479a 100644 --- a/srcpkgs/libee/template +++ b/srcpkgs/libee/template @@ -10,7 +10,6 @@ short_desc="Event expression library inspired by CEE" maintainer="Juan RP " license="LGPL-2.1" homepage="http://www.libee.org" -update_site="${homepage}/download" distfiles="$homepage/files/download/$pkgname-$version.tar.gz" checksum=c0dac01938593deee06c3d161e4eda4ecc0fd7317e1321bd96e301aceb7fb027 diff --git a/srcpkgs/libee/update b/srcpkgs/libee/update new file mode 100644 index 0000000000..66a3005800 --- /dev/null +++ b/srcpkgs/libee/update @@ -0,0 +1 @@ +site="${homepage}/download" diff --git a/srcpkgs/libesmtp/template b/srcpkgs/libesmtp/template index baf2ae4503..932103c5cd 100644 --- a/srcpkgs/libesmtp/template +++ b/srcpkgs/libesmtp/template @@ -9,8 +9,6 @@ short_desc="Manage submission of emails using SMTP protocol" maintainer="Juan RP " homepage="http://stafford.uklinux.net/libesmtp/" license="LGPL-2.1" -update_site="${homepage}/download.html" -update_ignore="*rc*" distfiles="http://stafford.uklinux.net/libesmtp/${pkgname}-${version}.tar.bz2" checksum=d0a61a5c52d99fa7ce7d00ed0a07e341dbda67101dbed1ab0cdae3f37db4eb0b diff --git a/srcpkgs/libesmtp/update b/srcpkgs/libesmtp/update new file mode 100644 index 0000000000..a7d305b8a0 --- /dev/null +++ b/srcpkgs/libesmtp/update @@ -0,0 +1,2 @@ +site="${homepage}/download.html" +ignore="*rc*" diff --git a/srcpkgs/libestr/template b/srcpkgs/libestr/template index 6257a6c059..ced801f470 100644 --- a/srcpkgs/libestr/template +++ b/srcpkgs/libestr/template @@ -7,7 +7,6 @@ short_desc="C library for string processing" maintainer="Juan RP " license="LGPL-2.1" homepage="http://libestr.adiscon.com" -update_site="${homepage}/download" distfiles="$homepage/files/download/$pkgname-$version.tar.gz" checksum=bd655e126e750edd18544b88eb1568d200a424a0c23f665eb14bbece07ac703c diff --git a/srcpkgs/libestr/update b/srcpkgs/libestr/update new file mode 100644 index 0000000000..66a3005800 --- /dev/null +++ b/srcpkgs/libestr/update @@ -0,0 +1 @@ +site="${homepage}/download" diff --git a/srcpkgs/libfm-extra/template b/srcpkgs/libfm-extra/template index 1b5b08b5cc..1105cf3730 100644 --- a/srcpkgs/libfm-extra/template +++ b/srcpkgs/libfm-extra/template @@ -15,7 +15,6 @@ short_desc="LXDE GLib/GIO based library (extra library)" maintainer="Juan RP " homepage="http://pcmanfm.sourceforge.net/" license="GPL-2" -update_pkgname=libfm distfiles="${SOURCEFORGE_SITE}/pcmanfm/libfm-${version}.tar.xz" checksum=c692f1624a4cbc8d1dd55f3b3f3369fbf5d26f63a916e2c295230b2344e1fbf9 diff --git a/srcpkgs/libfm-extra/update b/srcpkgs/libfm-extra/update new file mode 100644 index 0000000000..e9d1e071c9 --- /dev/null +++ b/srcpkgs/libfm-extra/update @@ -0,0 +1 @@ +pkgname=libfm diff --git a/srcpkgs/libgdlmm/template b/srcpkgs/libgdlmm/template index fefa3b53a2..86b599571f 100644 --- a/srcpkgs/libgdlmm/template +++ b/srcpkgs/libgdlmm/template @@ -11,7 +11,6 @@ short_desc="C++ bindings for the gdl library" homepage="https://git.gnome.org/browse/gdlmm" license="LGPL-2" maintainer="Enno Boland " -update_pkgname=$_realname distfiles="${GNOME_SITE}/$_realname/3.7/$_realname-$version.tar.xz" checksum=e280ed9233877b63ad0a0c8fb04d2c35dc6a29b3312151ee21a15b5932fef79b wrksrc=${_realname}-${version} diff --git a/srcpkgs/libgdlmm/update b/srcpkgs/libgdlmm/update new file mode 100644 index 0000000000..f8273a389c --- /dev/null +++ b/srcpkgs/libgdlmm/update @@ -0,0 +1 @@ +pkgname=$_realname diff --git a/srcpkgs/libgexiv2/template b/srcpkgs/libgexiv2/template index 4d92e8370d..6180b17755 100644 --- a/srcpkgs/libgexiv2/template +++ b/srcpkgs/libgexiv2/template @@ -10,7 +10,6 @@ short_desc="GObject-based wrapper around the Exiv2 library" maintainer="Juan RP " license="GPL-2" homepage="https://wiki.gnome.org/Projects/gexiv2" -update_pkgname=gexiv2 distfiles="${GNOME_SITE}/gexiv2/${version%.*}/${pkgname/lib/}-${version}.tar.xz" checksum=2fd21f0ed5125e51d02226e7f41be751cfa8ae411a8ed1a651e16b06d79047b2 diff --git a/srcpkgs/libgexiv2/update b/srcpkgs/libgexiv2/update new file mode 100644 index 0000000000..3cc5e8fbe2 --- /dev/null +++ b/srcpkgs/libgexiv2/update @@ -0,0 +1 @@ +pkgname=gexiv2 diff --git a/srcpkgs/libgit2/template b/srcpkgs/libgit2/template index f42c205516..c08509fbec 100644 --- a/srcpkgs/libgit2/template +++ b/srcpkgs/libgit2/template @@ -8,8 +8,6 @@ makedepends="zlib-devel libressl-devel>=2.1.2" short_desc="The Git linkable library" maintainer="Juan RP " homepage="http://libgit2.github.com/" -update_site="https://github.com/libgit2/libgit2/tags" -update_pattern='archive/v?\K[\d.]+(?=\.tar\.gz)' license="GPL-2 with Linking Exception" do_fetch() { diff --git a/srcpkgs/libgit2/update b/srcpkgs/libgit2/update new file mode 100644 index 0000000000..537536a15c --- /dev/null +++ b/srcpkgs/libgit2/update @@ -0,0 +1,2 @@ +site="https://github.com/libgit2/libgit2/tags" +pattern='archive/v?\K[\d.]+(?=\.tar\.gz)' diff --git a/srcpkgs/libgweather/template b/srcpkgs/libgweather/template index 9a08292c58..fba5613748 100644 --- a/srcpkgs/libgweather/template +++ b/srcpkgs/libgweather/template @@ -15,8 +15,6 @@ homepage="http://www.gnome.org/" distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz" checksum=aa0d03132fc6c446cf549df1d91e319e1abcc676f1d9f8bc1dc01f033dcff493 -update_site="${GNOME_SITE}/$pkgname/cache.json" -update_ignore="3.*[13579].*" if [ -z "$CROSS_BUILD" ]; then build_options_default="gir" diff --git a/srcpkgs/libgweather/update b/srcpkgs/libgweather/update new file mode 100644 index 0000000000..a84fbbad8b --- /dev/null +++ b/srcpkgs/libgweather/update @@ -0,0 +1,2 @@ +site="${GNOME_SITE}/$pkgname/cache.json" +ignore="3.*[13579].*" diff --git a/srcpkgs/libldap/template b/srcpkgs/libldap/template index 16127543f7..2bd787e39c 100644 --- a/srcpkgs/libldap/template +++ b/srcpkgs/libldap/template @@ -15,8 +15,6 @@ short_desc="OpenLDAP (Lightweight Directory Access Protocol) libraries" license="OpenLDAP License v2.8 - BSD alike" maintainer="Juan RP " homepage="http://www.openldap.org" -update_site="${homepage}/software/download/" -update_pkgname=openldap distfiles="ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-$version.tgz" checksum=d12611a5c25b6499293c2bb7b435dc2b174db73e83f5a8cb7e34f2ce5fa6dadb diff --git a/srcpkgs/libldap/update b/srcpkgs/libldap/update new file mode 100644 index 0000000000..a1da6cbfd8 --- /dev/null +++ b/srcpkgs/libldap/update @@ -0,0 +1,2 @@ +site="${homepage}/software/download/" +pkgname=openldap diff --git a/srcpkgs/libmp4v2/template b/srcpkgs/libmp4v2/template index b56f86665b..f1246b0ee6 100644 --- a/srcpkgs/libmp4v2/template +++ b/srcpkgs/libmp4v2/template @@ -9,7 +9,6 @@ short_desc="MPEG-4 library from mpeg4ip" maintainer="Juan RP " homepage="http://code.google.com/p/mp4v2/" license="MPL-1.1" -update_pkgname=mp4v2 distfiles="http://mp4v2.googlecode.com/files/mp4v2-${version}.tar.bz2" checksum=0319b9a60b667cf10ee0ec7505eb7bdc0a2e21ca7a93db96ec5bd758e3428338 diff --git a/srcpkgs/libmp4v2/update b/srcpkgs/libmp4v2/update new file mode 100644 index 0000000000..b8ac01a342 --- /dev/null +++ b/srcpkgs/libmp4v2/update @@ -0,0 +1 @@ +pkgname=mp4v2 diff --git a/srcpkgs/libmpc/template b/srcpkgs/libmpc/template index 698b679afe..ffa6c3c7dc 100644 --- a/srcpkgs/libmpc/template +++ b/srcpkgs/libmpc/template @@ -11,8 +11,6 @@ short_desc="C library for the arithmetic of complex numbers" maintainer="Juan RP " homepage="http://www.multiprecision.org" license="LGPL-3" -update_pkgname=mpc -update_site="${homepage}/?prog=mpc&page=download" distfiles="http://www.multiprecision.org/mpc/download/mpc-${version}.tar.gz" checksum=b561f54d8a479cee3bc891ee52735f18ff86712ba30f036f8b8537bae380c488 diff --git a/srcpkgs/libmpc/update b/srcpkgs/libmpc/update new file mode 100644 index 0000000000..a36021568e --- /dev/null +++ b/srcpkgs/libmpc/update @@ -0,0 +1,2 @@ +pkgname=mpc +site="${homepage}/?prog=mpc&page=download" diff --git a/srcpkgs/libmpcdec/template b/srcpkgs/libmpcdec/template index bf60e856ba..3cf8da51da 100644 --- a/srcpkgs/libmpcdec/template +++ b/srcpkgs/libmpcdec/template @@ -7,7 +7,6 @@ short_desc="Portable Musepack decoder library" maintainer="Juan RP " homepage="http://musepack.net/" license="BSD" -update_site="${homepage}index.php?pg=src" distfiles="http://files.musepack.net/source/$pkgname-$version.tar.bz2" checksum=4bd54929a80850754f27b568d7891e1e3e1b8d2f208d371f27d1fda09e6f12a8 diff --git a/srcpkgs/libmpcdec/update b/srcpkgs/libmpcdec/update new file mode 100644 index 0000000000..46ecdec47a --- /dev/null +++ b/srcpkgs/libmpcdec/update @@ -0,0 +1 @@ +site="${homepage}index.php?pg=src" diff --git a/srcpkgs/libnl3/template b/srcpkgs/libnl3/template index b4e258591f..897f400fce 100644 --- a/srcpkgs/libnl3/template +++ b/srcpkgs/libnl3/template @@ -11,7 +11,6 @@ short_desc="Netlink Protocol Library Suite" maintainer="Juan RP " license="LGPL-2.1" homepage="http://www.infradead.org/~tgr/libnl" -update_pkgname=libnl distfiles="${homepage}/files/libnl-${version}.tar.gz" checksum=8beb7590674957b931de6b7f81c530b85dc7c1ad8fbda015398bc1e8d1ce8ec5 diff --git a/srcpkgs/libnl3/update b/srcpkgs/libnl3/update new file mode 100644 index 0000000000..b2e13cc88d --- /dev/null +++ b/srcpkgs/libnl3/update @@ -0,0 +1 @@ +pkgname=libnl diff --git a/srcpkgs/libopenal/template b/srcpkgs/libopenal/template index e2ea400ce5..14a1989908 100644 --- a/srcpkgs/libopenal/template +++ b/srcpkgs/libopenal/template @@ -8,7 +8,6 @@ short_desc="A cross-platform 3D audio library" maintainer="Juan RP " license="LGPL-2.1" homepage="http://kcat.strangesoft.net/openal.html" -update_pkgname=openal-soft distfiles="http://kcat.strangesoft.net/openal-releases/openal-soft-${version}.tar.bz2" checksum=2f3dcd313fe26391284fbf8596863723f99c65d6c6846dccb48e79cadaf40d5f diff --git a/srcpkgs/libopenal/update b/srcpkgs/libopenal/update new file mode 100644 index 0000000000..616d2425c8 --- /dev/null +++ b/srcpkgs/libopenal/update @@ -0,0 +1 @@ +pkgname=openal-soft diff --git a/srcpkgs/libosmocore/template b/srcpkgs/libosmocore/template index 1d80517045..72053bdb0c 100644 --- a/srcpkgs/libosmocore/template +++ b/srcpkgs/libosmocore/template @@ -9,7 +9,6 @@ maintainer="Enno Boland " license="GPL" hostmakedepends="autoconf automake libtool git" homepage="http://bb.osmocom.org/trac/wiki/libosmocore" -update_site="http://cgit.osmocom.org/libosmocore/" _giturl=git://git.osmocom.org/libosmocore.git configure_args="--prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --datadir=/usr/share \ diff --git a/srcpkgs/libosmocore/update b/srcpkgs/libosmocore/update new file mode 100644 index 0000000000..852cb35f22 --- /dev/null +++ b/srcpkgs/libosmocore/update @@ -0,0 +1 @@ +site="http://cgit.osmocom.org/libosmocore/" diff --git a/srcpkgs/libpng/template b/srcpkgs/libpng/template index 177d4b3852..1adf3800e9 100644 --- a/srcpkgs/libpng/template +++ b/srcpkgs/libpng/template @@ -8,7 +8,6 @@ short_desc="Library for manipulating PNG images" maintainer="Juan RP " homepage="http://www.libpng.org/pub/png/libpng.html" license="zlib" -update_ignore="*beta*" distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.xz" checksum=42f754df633e4e700544e5913cbe2fd4928bbfccdc07708a5cf84e59827fbe60 diff --git a/srcpkgs/libpng/update b/srcpkgs/libpng/update new file mode 100644 index 0000000000..125db71da8 --- /dev/null +++ b/srcpkgs/libpng/update @@ -0,0 +1 @@ +ignore="*beta*" diff --git a/srcpkgs/libraw/template b/srcpkgs/libraw/template index 213ea2190d..e353be780b 100644 --- a/srcpkgs/libraw/template +++ b/srcpkgs/libraw/template @@ -10,7 +10,6 @@ short_desc="Raw image decoder library" maintainer="Juan RP " license="GPL-2, CDDL, ${pkgname}" homepage="http://www.libraw.org" -update_site="${homepage}/download" distfiles="http://www.libraw.org/data/LibRaw-${version}.tar.gz" checksum=71f43871ec2535345c5c9b748f07813e49915170f9510b721a2be6478426cf96 diff --git a/srcpkgs/libraw/update b/srcpkgs/libraw/update new file mode 100644 index 0000000000..66a3005800 --- /dev/null +++ b/srcpkgs/libraw/update @@ -0,0 +1 @@ +site="${homepage}/download" diff --git a/srcpkgs/librlog/template b/srcpkgs/librlog/template index 35e782369f..6154e04dc3 100644 --- a/srcpkgs/librlog/template +++ b/srcpkgs/librlog/template @@ -7,7 +7,6 @@ short_desc="Flexible message logging facility for C++ programs and libraries" maintainer="Juan RP " license="LGPL-1" homepage="http://code.google.com/p/rlog/" -update_pkgname=rlog distfiles="http://rlog.googlecode.com/files/rlog-$version.tar.gz" wrksrc="rlog-$version" checksum=a938eeedeb4d56f1343dc5561bc09ae70b24e8f70d07a6f8d4b6eed32e783f79 diff --git a/srcpkgs/librlog/update b/srcpkgs/librlog/update new file mode 100644 index 0000000000..feb68c4d3e --- /dev/null +++ b/srcpkgs/librlog/update @@ -0,0 +1 @@ +pkgname=rlog diff --git a/srcpkgs/libsamplerate/template b/srcpkgs/libsamplerate/template index 9c489ea736..b2a7334643 100644 --- a/srcpkgs/libsamplerate/template +++ b/srcpkgs/libsamplerate/template @@ -9,7 +9,6 @@ short_desc="Sample Rate Converter for audio" maintainer="Juan RP " homepage="http://www.mega-nerd.com/SRC" license="GPL-2" -update_site="${homepage}/download.html" distfiles="http://www.mega-nerd.com/SRC/$pkgname-$version.tar.gz" checksum=93b54bdf46d5e6d2354b7034395fe329c222a966790de34520702bb9642f1c06 diff --git a/srcpkgs/libsamplerate/update b/srcpkgs/libsamplerate/update new file mode 100644 index 0000000000..8ccb863442 --- /dev/null +++ b/srcpkgs/libsamplerate/update @@ -0,0 +1 @@ +site="${homepage}/download.html" diff --git a/srcpkgs/libsasl/template b/srcpkgs/libsasl/template index 92b9ec8f08..ae768cf27c 100644 --- a/srcpkgs/libsasl/template +++ b/srcpkgs/libsasl/template @@ -15,7 +15,6 @@ short_desc="Cyrus SASL - runtime shared libraries" maintainer="Juan RP " homepage="http://cyrusimap.web.cmu.edu/" license="BSD" -update_pkgname=cyrus-sasl distfiles="ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-${version}.tar.gz" checksum=8fbc5136512b59bb793657f36fadda6359cae3b08f01fd16b3d406f1345b7bc3 diff --git a/srcpkgs/libsasl/update b/srcpkgs/libsasl/update new file mode 100644 index 0000000000..cfe7b96b0c --- /dev/null +++ b/srcpkgs/libsasl/update @@ -0,0 +1 @@ +pkgname=cyrus-sasl diff --git a/srcpkgs/libssh/template b/srcpkgs/libssh/template index 8e7768e693..a6774bb2b9 100644 --- a/srcpkgs/libssh/template +++ b/srcpkgs/libssh/template @@ -11,7 +11,6 @@ license="BSD" homepage="http://www.libssh.org/" distfiles="http://git.libssh.org/projects/libssh.git/snapshot/${pkgname}-${version}.tar.bz2" checksum="0dc8f8b540767e57950610a36dde90d4f5ba0102697d1620f19ece40db2a239f" -update_site="http://git.libssh.org/projects/libssh.git/" libssh-devel_package() { depends="${sourcepkg}>=${version}" diff --git a/srcpkgs/libssh/update b/srcpkgs/libssh/update new file mode 100644 index 0000000000..334c37a770 --- /dev/null +++ b/srcpkgs/libssh/update @@ -0,0 +1 @@ +site="http://git.libssh.org/projects/libssh.git/" diff --git a/srcpkgs/libusbmuxd/template b/srcpkgs/libusbmuxd/template index 2601229820..105d7483e3 100644 --- a/srcpkgs/libusbmuxd/template +++ b/srcpkgs/libusbmuxd/template @@ -9,7 +9,6 @@ short_desc="USB Multiplex Daemon library" maintainer="Juan RP " license="GPL-2,LGPL-2.1" homepage="https://marcan.st/blog/iphonelinux/usbmuxd/" -update_site="http://cgit.sukimashita.com/libusbmuxd.git/" distfiles="http://www.libimobiledevice.org/downloads/${pkgname}-${version}.tar.bz2" checksum=1aa21391265d2284ac3ccb7cf278126d10d354878589905b35e8102104fec9f2 diff --git a/srcpkgs/libusbmuxd/update b/srcpkgs/libusbmuxd/update new file mode 100644 index 0000000000..0efcc71461 --- /dev/null +++ b/srcpkgs/libusbmuxd/update @@ -0,0 +1 @@ +site="http://cgit.sukimashita.com/libusbmuxd.git/" diff --git a/srcpkgs/libvpx/template b/srcpkgs/libvpx/template index 1054328937..7d1cc16ec0 100644 --- a/srcpkgs/libvpx/template +++ b/srcpkgs/libvpx/template @@ -8,7 +8,6 @@ short_desc="The VP8 Codec" maintainer="Juan RP " homepage="http://www.webmproject.org" license="BSD" -update_site="http://code.google.com/p/webm/downloads" distfiles="http://webm.googlecode.com/files/${pkgname}-v${version}.tar.bz2" checksum=d3dcc8d84af51c6c382b214397c62402e37a799e8ebcda6f4217aef0010451a9 diff --git a/srcpkgs/libvpx/update b/srcpkgs/libvpx/update new file mode 100644 index 0000000000..b9fe00787b --- /dev/null +++ b/srcpkgs/libvpx/update @@ -0,0 +1 @@ +site="http://code.google.com/p/webm/downloads" diff --git a/srcpkgs/libwebp/template b/srcpkgs/libwebp/template index 208fef586b..449ca7fbe1 100644 --- a/srcpkgs/libwebp/template +++ b/srcpkgs/libwebp/template @@ -11,7 +11,6 @@ short_desc="WebP image format" maintainer="Juan RP " homepage="https://developers.google.com/speed/webp/" license="BSD" -update_site="http://downloads.webmproject.org/releases/webp/index.html" distfiles="http://downloads.webmproject.org/releases/webp/${pkgname}-${version}.tar.gz" checksum=14d825d7c2ef7d49621bcb6b83466be455585e671ae0a2ebc1f2e07775a1722d diff --git a/srcpkgs/libwebp/update b/srcpkgs/libwebp/update new file mode 100644 index 0000000000..2f976fa77c --- /dev/null +++ b/srcpkgs/libwebp/update @@ -0,0 +1 @@ +site="http://downloads.webmproject.org/releases/webp/index.html" diff --git a/srcpkgs/libyaml/template b/srcpkgs/libyaml/template index caf91b7b90..6150f4c36e 100644 --- a/srcpkgs/libyaml/template +++ b/srcpkgs/libyaml/template @@ -8,7 +8,6 @@ short_desc="Fast YAML 1.1 parser and emitter library" maintainer="Juan RP " license="MIT" homepage="http://pyyaml.org/wiki/LibYAML" -update_pkgname=yaml distfiles="http://pyyaml.org/download/libyaml/yaml-${version}.tar.gz" checksum=7da6971b4bd08a986dd2a61353bc422362bd0edcc67d7ebaac68c95f74182749 diff --git a/srcpkgs/libyaml/update b/srcpkgs/libyaml/update new file mode 100644 index 0000000000..99b8546b50 --- /dev/null +++ b/srcpkgs/libyaml/update @@ -0,0 +1 @@ +pkgname=yaml diff --git a/srcpkgs/linux-lts/template b/srcpkgs/linux-lts/template index 8671ab06de..7e3a58dd03 100644 --- a/srcpkgs/linux-lts/template +++ b/srcpkgs/linux-lts/template @@ -8,8 +8,6 @@ short_desc="Linux LTS (Long Term Support) kernel meta package" maintainer="Christian Neukirchen " license="Public domain" only_for_archs="i686 x86_64" -update_site="https://www.kernel.org/feeds/kdist.xml" -update_pattern="\K\d+.\d+(?=.[\d]+: longterm)" case "$XBPS_TARGET_MACHINE" in i686*|x86_64*) diff --git a/srcpkgs/linux-lts/update b/srcpkgs/linux-lts/update new file mode 100644 index 0000000000..7ba2c318be --- /dev/null +++ b/srcpkgs/linux-lts/update @@ -0,0 +1,2 @@ +site="https://www.kernel.org/feeds/kdist.xml" +pattern="\K\d+.\d+(?=.[\d]+: longterm)" diff --git a/srcpkgs/linux-tools/template b/srcpkgs/linux-tools/template index 7aefcd58fc..843da1f12c 100644 --- a/srcpkgs/linux-tools/template +++ b/srcpkgs/linux-tools/template @@ -12,7 +12,6 @@ depends="cpupower>=${version} perf>=${version} usbip>=${version}" maintainer="Juan RP " license="GPL-2" homepage="http://www.kernel.org" -update_pkgname="linux" distfiles="http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz" checksum=5833cd780fd96614b722040041d8242c102ad7eb956d6f102760bc0faad0a08e diff --git a/srcpkgs/linux-tools/update b/srcpkgs/linux-tools/update new file mode 100644 index 0000000000..07d190a88e --- /dev/null +++ b/srcpkgs/linux-tools/update @@ -0,0 +1 @@ +pkgname="linux" diff --git a/srcpkgs/linux/template b/srcpkgs/linux/template index 8c7cb12825..75f9555000 100644 --- a/srcpkgs/linux/template +++ b/srcpkgs/linux/template @@ -5,8 +5,6 @@ revision=1 build_style=meta homepage="http://www.voidlinux.eu/" short_desc="The Linux kernel meta package" -update_site="https://www.kernel.org/feeds/kdist.xml" -update_pattern="\K\d+.\d+(?=.[\d]+: stable)" maintainer="Juan RP " license="Public domain" only_for_archs="i686 i686-musl x86_64 x86_64-musl" diff --git a/srcpkgs/linux/update b/srcpkgs/linux/update new file mode 100644 index 0000000000..d0cd82229a --- /dev/null +++ b/srcpkgs/linux/update @@ -0,0 +1,2 @@ +site="https://www.kernel.org/feeds/kdist.xml" +pattern="\K\d+.\d+(?=.[\d]+: stable)" diff --git a/srcpkgs/litecoin/template b/srcpkgs/litecoin/template index e37dcc7608..ccc7364693 100644 --- a/srcpkgs/litecoin/template +++ b/srcpkgs/litecoin/template @@ -8,8 +8,6 @@ makedepends="zlib-devel db-devel>=5.3 libressl-devel>=2.1.2 boost-devel>=1.54 au short_desc="Peer-to-peer Internet currency based on scrypt cryptography" maintainer="Juan RP " license="MIT" -update_site="https://github.com/litecoin-project/litecoin/tags" -update_pattern='archive/v?\K[\d.]+(?=\.tar\.gz)' homepage="http://www.litecoin.org/" do_fetch() { diff --git a/srcpkgs/litecoin/update b/srcpkgs/litecoin/update new file mode 100644 index 0000000000..9271e0020d --- /dev/null +++ b/srcpkgs/litecoin/update @@ -0,0 +1,2 @@ +site="https://github.com/litecoin-project/litecoin/tags" +pattern='archive/v?\K[\d.]+(?=\.tar\.gz)' diff --git a/srcpkgs/llvm/template b/srcpkgs/llvm/template index efc7b69a86..06cfaa3586 100644 --- a/srcpkgs/llvm/template +++ b/srcpkgs/llvm/template @@ -12,7 +12,6 @@ conflicts="llvm-git>=0" short_desc="Low Level Virtual Machine" maintainer="Juan RP " homepage="http://www.llvm.org" -update_site="http://www.llvm.org/releases/download.html" license="BSD" distfiles=" http://www.llvm.org/releases/${version}/llvm-${version}.src.tar.xz diff --git a/srcpkgs/llvm/update b/srcpkgs/llvm/update new file mode 100644 index 0000000000..49e4f464a9 --- /dev/null +++ b/srcpkgs/llvm/update @@ -0,0 +1 @@ +site="http://www.llvm.org/releases/download.html" diff --git a/srcpkgs/lpsolve/template b/srcpkgs/lpsolve/template index 947e7a0702..1876160bbe 100644 --- a/srcpkgs/lpsolve/template +++ b/srcpkgs/lpsolve/template @@ -7,7 +7,6 @@ short_desc="Mixed Integer Linear Programming (MILP) solver" maintainer="Enno Boland " license="GPL" homepage="http://sourceforge.net/projects/lpsolve" -update_pattern='lp_solve_\K[\d.]+(?=_source\.tar\.gz)' distfiles="${SOURCEFORGE_SITE}/$pkgname/lp_solve_${version}_source.tar.gz" checksum=5827a30b143105283f398a09419ea608719a2d7699ecea165a66d521803bcc9c diff --git a/srcpkgs/lpsolve/update b/srcpkgs/lpsolve/update new file mode 100644 index 0000000000..29d0471d15 --- /dev/null +++ b/srcpkgs/lpsolve/update @@ -0,0 +1 @@ +pattern='lp_solve_\K[\d.]+(?=_source\.tar\.gz)' diff --git a/srcpkgs/lshw/template b/srcpkgs/lshw/template index bdd4caac37..8d7855ce5b 100644 --- a/srcpkgs/lshw/template +++ b/srcpkgs/lshw/template @@ -9,7 +9,6 @@ short_desc="Hardware lister application" maintainer="Enno Boland " homepage="http://ezix.org/project/wiki/HardwareLiSter" license="GPL-2" -update_ignore="T.00.*" distfiles="http://ezix.org/software/files/lshw-${version}.tar.gz" checksum=eb9cc053fa0f1e78685cb695596e73931bfb55d2377e3bc3b8b94aff4c5a489c make_install_target="install install-gui" diff --git a/srcpkgs/lshw/update b/srcpkgs/lshw/update new file mode 100644 index 0000000000..37090710d9 --- /dev/null +++ b/srcpkgs/lshw/update @@ -0,0 +1 @@ +ignore="T.00.*" diff --git a/srcpkgs/ltrace/template b/srcpkgs/ltrace/template index 7611d80b9b..89c836b6c1 100644 --- a/srcpkgs/ltrace/template +++ b/srcpkgs/ltrace/template @@ -8,8 +8,6 @@ conf_files="/etc/ltrace.conf" short_desc="Tracks runtime library calls in dynamically linked programs" maintainer="Juan RP " homepage="http://ltrace.alioth.debian.org/" -update_site="http://anonscm.debian.org/cgit/collab-maint/ltrace.git/refs/" -update_pattern='tag/\?id=\K[\d.]+' license="GPL-2" distfiles="http://xbps.nopcode.org/distfiles/ltrace-${version}.tar.bz2" checksum=0e6f8c077471b544c06def7192d983861ad2f8688dd5504beae62f0c5f5b9503 diff --git a/srcpkgs/ltrace/update b/srcpkgs/ltrace/update new file mode 100644 index 0000000000..a957f7261c --- /dev/null +++ b/srcpkgs/ltrace/update @@ -0,0 +1,2 @@ +site="http://anonscm.debian.org/cgit/collab-maint/ltrace.git/refs/" +pattern='tag/\?id=\K[\d.]+' diff --git a/srcpkgs/luasocket/template b/srcpkgs/luasocket/template index 21332e12ee..070273ab86 100644 --- a/srcpkgs/luasocket/template +++ b/srcpkgs/luasocket/template @@ -9,9 +9,6 @@ short_desc="Network support for the Lua language " maintainer="Juan RP " license="MIT" homepage="http://w3.impa.br/~diego/software/luasocket/" -update_site="https://github.com/diegonehab/luasocket/tags" -update_pattern='archive/v\K[\d\w-.]+(?=\.tar\.gz)' -update_ignore="*rc*" distfiles="http://luaforge.net/frs/download.php/2664/luasocket-$version.tar.gz" checksum=4fd9c775cfd98841299851e29b30176caf289370fea1ff1e00bb67c2d6842ca6 diff --git a/srcpkgs/luasocket/update b/srcpkgs/luasocket/update new file mode 100644 index 0000000000..51dbff23e5 --- /dev/null +++ b/srcpkgs/luasocket/update @@ -0,0 +1,3 @@ +site="https://github.com/diegonehab/luasocket/tags" +pattern='archive/v\K[\d\w-.]+(?=\.tar\.gz)' +ignore="*rc*" diff --git a/srcpkgs/lvm2/template b/srcpkgs/lvm2/template index e2f3c73977..699ee7938f 100644 --- a/srcpkgs/lvm2/template +++ b/srcpkgs/lvm2/template @@ -24,7 +24,6 @@ short_desc="Logical Volume Manager 2 utilities" maintainer="Juan RP " homepage="http://sourceware.org/lvm2/" license="GPL-2, LGPL-2.1" -update_pkgname="LVM2." distfiles="ftp://sources.redhat.com/pub/lvm2/LVM2.${version}.tgz" checksum=de9cb0acfb9c5a6afa6184160c9e066f19043677f91a72c741d153efcd2874a5 diff --git a/srcpkgs/lvm2/update b/srcpkgs/lvm2/update new file mode 100644 index 0000000000..9a5c472e1e --- /dev/null +++ b/srcpkgs/lvm2/update @@ -0,0 +1 @@ +pkgname="LVM2." diff --git a/srcpkgs/lzop/template b/srcpkgs/lzop/template index e4f70c95bd..c7d294de95 100644 --- a/srcpkgs/lzop/template +++ b/srcpkgs/lzop/template @@ -8,6 +8,5 @@ short_desc="File compressor using LZO" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://www.lzop.org/" -update_ignore="10??" distfiles="http://www.lzop.org/download/$pkgname-$version.tar.gz" checksum=c1425b8c77d49f5a679d5a126c90ea6ad99585a55e335a613cae59e909dbb2c9 diff --git a/srcpkgs/lzop/update b/srcpkgs/lzop/update new file mode 100644 index 0000000000..8ea5ccc9d7 --- /dev/null +++ b/srcpkgs/lzop/update @@ -0,0 +1 @@ +ignore="10??" diff --git a/srcpkgs/makeself/template b/srcpkgs/makeself/template index 92bcb2932f..d5dd04aea3 100644 --- a/srcpkgs/makeself/template +++ b/srcpkgs/makeself/template @@ -10,7 +10,6 @@ short_desc="Make self-extractable archives on Unix" homepage="http://www.megastep.org/makeself/" license="GPL-2+" maintainer="Juan RP " -update_pattern=$pkgname'-\K[\d.]+(?=\.run)' distfiles="http://megastep.org/$pkgname/$pkgname-$version.run" checksum=8227668bb35c34d86e6f0fe69c7bf4bd2813f51edfcbfc227896b4787b0a1a4e diff --git a/srcpkgs/makeself/update b/srcpkgs/makeself/update new file mode 100644 index 0000000000..b5a6d8a903 --- /dev/null +++ b/srcpkgs/makeself/update @@ -0,0 +1 @@ +pattern=$pkgname'-\K[\d.]+(?=\.run)' diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template index 774f57a46e..931950aa75 100644 --- a/srcpkgs/mariadb/template +++ b/srcpkgs/mariadb/template @@ -35,8 +35,6 @@ homepage="http://mariadb.org/" license="GPL-2" distfiles="https://downloads.$pkgname.org/f/$pkgname-$version/source/$pkgname-$version.tar.gz" checksum=9154cb68504d469b1bac636b85e30b2b2da2586092476d6ad2f9d6bc462909d8 -update_site="https://downloads.mariadb.org/mariadb/" -update_pattern="/mariadb/\K[\d.]+(?=/)" pre_configure() { # We need some host binaries before starting cross compilation. diff --git a/srcpkgs/mariadb/update b/srcpkgs/mariadb/update new file mode 100644 index 0000000000..579eb27c5e --- /dev/null +++ b/srcpkgs/mariadb/update @@ -0,0 +1,2 @@ +site="https://downloads.mariadb.org/mariadb/" +pattern="/mariadb/\K[\d.]+(?=/)" diff --git a/srcpkgs/mdds/template b/srcpkgs/mdds/template index d492fe9b3e..a48267fc1c 100644 --- a/srcpkgs/mdds/template +++ b/srcpkgs/mdds/template @@ -7,7 +7,6 @@ short_desc="Collection of multi-dimensional data structures and indexing algorit maintainer="Enno Boland " license="MIT" homepage="https://code.google.com/p/multidimalgorithm/" -update_site="${homepage}wiki/Downloads" distfiles="http://kohei.us/files/mdds/src/${pkgname}_${version}.tar.bz2" checksum=cd0a0dc8b35d6582efad6898546c86714eb058696ba26b0e7f8914faa002a5ab wrksrc="${pkgname}_${version}" diff --git a/srcpkgs/mdds/update b/srcpkgs/mdds/update new file mode 100644 index 0000000000..d37cb6ca02 --- /dev/null +++ b/srcpkgs/mdds/update @@ -0,0 +1 @@ +site="${homepage}wiki/Downloads" diff --git a/srcpkgs/midori/template b/srcpkgs/midori/template index f1d28970c9..2458c77b7c 100644 --- a/srcpkgs/midori/template +++ b/srcpkgs/midori/template @@ -18,7 +18,5 @@ short_desc="Lightweight web browser using WebKit GTK+" maintainer="Juan RP " homepage="http://www.midori-browser.org/" license="GPL-2" -update_site="${homepage}download/" -update_pattern=$pkgname'_\K[\d.]+' distfiles="http://www.midori-browser.org/downloads/midori_${version}_all_.tar.bz2" checksum=b1a5309d926ea4e394f4a39552023b0427cf23053793d325e3daefceed282ec0 diff --git a/srcpkgs/midori/update b/srcpkgs/midori/update new file mode 100644 index 0000000000..196709402c --- /dev/null +++ b/srcpkgs/midori/update @@ -0,0 +1,2 @@ +site="${homepage}download/" +pattern=$pkgname'_\K[\d.]+' diff --git a/srcpkgs/minetest/template b/srcpkgs/minetest/template index 85effa719f..bb99a57b4d 100644 --- a/srcpkgs/minetest/template +++ b/srcpkgs/minetest/template @@ -8,8 +8,6 @@ short_desc="An InfiniMiner/Minecraft inspired game" maintainer="Juan RP " license="LGPL-2.1" homepage="http://www.minetest.org" -update_site="https://github.com/minetest/minetest/tags" -update_pattern='archive/\K[\d.]+(?=\.tar\.gz)' hostmakedepends="cmake pkg-config git" makedepends=" sqlite-devel libcurl-devel lua-devel libjpeg-turbo-devel libpng-devel diff --git a/srcpkgs/minetest/update b/srcpkgs/minetest/update new file mode 100644 index 0000000000..b43b0d98dd --- /dev/null +++ b/srcpkgs/minetest/update @@ -0,0 +1,2 @@ +site="https://github.com/minetest/minetest/tags" +pattern='archive/\K[\d.]+(?=\.tar\.gz)' diff --git a/srcpkgs/minicom/template b/srcpkgs/minicom/template index 528f3fc54f..df31e71efe 100644 --- a/srcpkgs/minicom/template +++ b/srcpkgs/minicom/template @@ -10,4 +10,3 @@ license="GPL-2" homepage="http://alioth.debian.org/projects/minicom/" distfiles="https://www.alioth.debian.org/frs/download.php/latestfile/3/${pkgname}-${version}.tar.gz" checksum=9ac3a663b82f4f5df64114b4792b9926b536c85f59de0f2d2b321c7626a904f4 -update_site="https://alioth.debian.org/frs/?group_id=30018" diff --git a/srcpkgs/minicom/update b/srcpkgs/minicom/update new file mode 100644 index 0000000000..06f6517d2f --- /dev/null +++ b/srcpkgs/minicom/update @@ -0,0 +1 @@ +site="https://alioth.debian.org/frs/?group_id=30018" diff --git a/srcpkgs/miniupnpc/template b/srcpkgs/miniupnpc/template index f6e7894482..347323769c 100644 --- a/srcpkgs/miniupnpc/template +++ b/srcpkgs/miniupnpc/template @@ -7,7 +7,6 @@ short_desc="A small UPnP client library/tool to access Internet Gateway Devices" maintainer="Juan RP " homepage="http://miniupnp.free.fr" license="BSD" -update_ignore="*.???????? 20[0123456789][0123456789]????" distfiles="http://miniupnp.free.fr/files/$pkgname-$version.tar.gz" checksum=2923e453e880bb949e3d4da9f83dd3cb6f08946d35de0b864d0339cf70934464 diff --git a/srcpkgs/miniupnpc/update b/srcpkgs/miniupnpc/update new file mode 100644 index 0000000000..7096d869ff --- /dev/null +++ b/srcpkgs/miniupnpc/update @@ -0,0 +1 @@ +ignore="*.???????? 20[0123456789][0123456789]????" diff --git a/srcpkgs/minizip/template b/srcpkgs/minizip/template index 1ccb4ff022..2b7ec909a3 100644 --- a/srcpkgs/minizip/template +++ b/srcpkgs/minizip/template @@ -10,9 +10,6 @@ short_desc="A C library for parsing configuration files" maintainer="ojab " license="zlib" homepage="http://www.winimage.com/zLibDll/minizip.html" -update_pkgname="zlib" -update_ignore="*dll*" -update_version="${version//./}" distfiles="http://www.zlib.net/zlib-$version.tar.gz" checksum=36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d diff --git a/srcpkgs/minizip/update b/srcpkgs/minizip/update new file mode 100644 index 0000000000..4403b5d756 --- /dev/null +++ b/srcpkgs/minizip/update @@ -0,0 +1,3 @@ +pkgname="zlib" +ignore="*dll*" +version="${version//./}" diff --git a/srcpkgs/mit-krb5/template b/srcpkgs/mit-krb5/template index 97ed5a2afa..f43b8ec996 100644 --- a/srcpkgs/mit-krb5/template +++ b/srcpkgs/mit-krb5/template @@ -6,7 +6,6 @@ short_desc="MIT Kerberos 5 implementation" maintainer="Juan RP " license="MIT" homepage="http://web.mit.edu/Kerberos" -update_pattern='krb5-\K[\d.]+' distfiles="$homepage/dist/krb5/${version%.*}/krb5-${version}-signed.tar" checksum=72f1b6c166cb42c0b03814ab7ea10f91926d8a665a5ba1cee430a3f31e62c580 diff --git a/srcpkgs/mit-krb5/update b/srcpkgs/mit-krb5/update new file mode 100644 index 0000000000..ad3298934b --- /dev/null +++ b/srcpkgs/mit-krb5/update @@ -0,0 +1 @@ +pattern='krb5-\K[\d.]+' diff --git a/srcpkgs/mongodb/template b/srcpkgs/mongodb/template index 5f43baa286..8b7077f14d 100644 --- a/srcpkgs/mongodb/template +++ b/srcpkgs/mongodb/template @@ -30,8 +30,6 @@ _scons_args=" --use-system-boost \ build_options="systemd" # ETOOHUGE nodebug=1 -update_site=$homepage/downloads -update_pattern="mongodb-src-r\K[\d.]+(?=.tar)" do_configure() { find . -name SConstruct -print0 | xargs -0 sed -i "s/-Werror/-Wno-error/g" diff --git a/srcpkgs/mongodb/update b/srcpkgs/mongodb/update new file mode 100644 index 0000000000..3461a652b1 --- /dev/null +++ b/srcpkgs/mongodb/update @@ -0,0 +1,2 @@ +site=$homepage/downloads +pattern="mongodb-src-r\K[\d.]+(?=.tar)" diff --git a/srcpkgs/mozjs24/template b/srcpkgs/mozjs24/template index beac08c082..0f3e2c2318 100644 --- a/srcpkgs/mozjs24/template +++ b/srcpkgs/mozjs24/template @@ -9,7 +9,6 @@ hostmakedepends="zip python perl nspr-devel" makedepends="zlib-devel nspr-devel libedit-devel libffi-devel" short_desc="Mozilla JavaScript interpreter and library (24.x series)" homepage="http://www.mozilla.org/js/" -update_pkgname="mozjs" license="MPL-1.1, GPL-2, LGPL-2.1" maintainer="Juan RP " distfiles="${MOZILLA_SITE}/js/mozjs-${version}.tar.bz2" diff --git a/srcpkgs/mozjs24/update b/srcpkgs/mozjs24/update new file mode 100644 index 0000000000..a1c3f7e43b --- /dev/null +++ b/srcpkgs/mozjs24/update @@ -0,0 +1 @@ +pkgname="mozjs" diff --git a/srcpkgs/mtree/template b/srcpkgs/mtree/template index d8fdd16c5c..b4e78d098a 100644 --- a/srcpkgs/mtree/template +++ b/srcpkgs/mtree/template @@ -8,7 +8,6 @@ short_desc="Utility for creating and verifying file hierarchies" maintainer="Christian Neukirchen " license="BSD" homepage="https://code.google.com/p/mtree-port/" -update_site="https://code.google.com/p/mtree-port/wiki/Downloads?tm=2" distfiles="https://s3.amazonaws.com/archie-public/mtree-port/${pkgname}-${version}.tar.gz" checksum=f69b8f249fac99cc97fd401c7d1d2539128231cbc49c2252c4868b441bbb403b diff --git a/srcpkgs/mtree/update b/srcpkgs/mtree/update new file mode 100644 index 0000000000..d51313f087 --- /dev/null +++ b/srcpkgs/mtree/update @@ -0,0 +1 @@ +site="https://code.google.com/p/mtree-port/wiki/Downloads?tm=2" diff --git a/srcpkgs/muffin/template b/srcpkgs/muffin/template index 584353f975..24a0ac3fe0 100644 --- a/srcpkgs/muffin/template +++ b/srcpkgs/muffin/template @@ -12,8 +12,6 @@ makedepends="clutter-devel startup-notification-devel libcanberra-devel depends="dconf zenity" maintainer="Juan RP " license="GPL-3" -update_site="https://github.com/linuxmint/${pkgname}/tags" -update_pattern='archive/\K[\d.]+(?=\.tar\.gz)' homepage="http://cinnamon.linuxmint.com/" do_fetch() { diff --git a/srcpkgs/muffin/update b/srcpkgs/muffin/update new file mode 100644 index 0000000000..413af3c979 --- /dev/null +++ b/srcpkgs/muffin/update @@ -0,0 +1,2 @@ +site="https://github.com/linuxmint/${pkgname}/tags" +pattern='archive/\K[\d.]+(?=\.tar\.gz)' diff --git a/srcpkgs/multitail/template b/srcpkgs/multitail/template index 6df253fe8b..87a974d0ba 100644 --- a/srcpkgs/multitail/template +++ b/srcpkgs/multitail/template @@ -8,7 +8,6 @@ short_desc="Tail multiple logfiles" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://www.vanheusden.com/multitail" -update_site="http://www.vanheusden.com/multitail/download.php" distfiles="${homepage}/${pkgname}-${version}.tgz" checksum=1e586cd62c3cdb8089062c9670a6d8588359e2f8030b8b18dbc715ea59d92e11 diff --git a/srcpkgs/multitail/update b/srcpkgs/multitail/update new file mode 100644 index 0000000000..05e1d65fe8 --- /dev/null +++ b/srcpkgs/multitail/update @@ -0,0 +1 @@ +site="http://www.vanheusden.com/multitail/download.php" diff --git a/srcpkgs/mupen64plus/template b/srcpkgs/mupen64plus/template index 3b08e448cb..2b16ea3d76 100644 --- a/srcpkgs/mupen64plus/template +++ b/srcpkgs/mupen64plus/template @@ -10,7 +10,6 @@ short_desc="A Nintendo64 Emulator" maintainer="Juan RP " license="GPL-2" homepage="http://code.google.com/p/mupen64plus/" -update_pattern=$pkgname'-bundle-src-\K[\d.]+(?=\.tar\.gz)' distfiles="http://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-${version}.tar.gz" checksum=2a269ca77797d7eb3759cbbfecbdc1d985e773e5be155d469c13f034e37e7e4d only_for_archs="i686 x86_64" diff --git a/srcpkgs/mupen64plus/update b/srcpkgs/mupen64plus/update new file mode 100644 index 0000000000..48386d6700 --- /dev/null +++ b/srcpkgs/mupen64plus/update @@ -0,0 +1 @@ +pattern=$pkgname'-bundle-src-\K[\d.]+(?=\.tar\.gz)' diff --git a/srcpkgs/mutter/template b/srcpkgs/mutter/template index 6d32fac94a..77ee121d77 100644 --- a/srcpkgs/mutter/template +++ b/srcpkgs/mutter/template @@ -18,8 +18,6 @@ homepage="http://www.gnome.org" license="GPL-2" distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz" checksum=0b23a2d31980d9de8e92ef940e6f63e3ac0f6446e2afc69ecbc80163f6af3a23 -update_site="${GNOME_SITE}/$pkgname/cache.json" -update_ignore="3.*[13579].*" mutter-devel_package() { depends="gsettings-desktop-schemas>=3.14 gtk+3-devel>=3.14 diff --git a/srcpkgs/mutter/update b/srcpkgs/mutter/update new file mode 100644 index 0000000000..a84fbbad8b --- /dev/null +++ b/srcpkgs/mutter/update @@ -0,0 +1,2 @@ +site="${GNOME_SITE}/$pkgname/cache.json" +ignore="3.*[13579].*" diff --git a/srcpkgs/nano/template b/srcpkgs/nano/template index 085633ba20..fdbb04a4a5 100644 --- a/srcpkgs/nano/template +++ b/srcpkgs/nano/template @@ -10,5 +10,4 @@ maintainer="Juan RP " homepage="http://www.nano-editor.org/" license="GPL-3" distfiles="http://www.nano-editor.org/dist/v2.3/$pkgname-$version.tar.gz" -update_ignore="*pre*" checksum=a74bf3f18b12c1c777ae737c0e463152439e381aba8720b4bc67449f36a09534 diff --git a/srcpkgs/nano/update b/srcpkgs/nano/update new file mode 100644 index 0000000000..8758aff9cb --- /dev/null +++ b/srcpkgs/nano/update @@ -0,0 +1 @@ +ignore="*pre*" diff --git a/srcpkgs/nemo/template b/srcpkgs/nemo/template index 0e930c8a76..006d74ac86 100644 --- a/srcpkgs/nemo/template +++ b/srcpkgs/nemo/template @@ -14,8 +14,6 @@ makedepends="libexif-devel gvfs-devel dconf-devel exempi-devel depends="gvfs dconf gnome-icon-theme cinnamon-translations desktop-file-utils hicolor-icon-theme" maintainer="Juan RP " license="GPL-3" -update_site="https://github.com/linuxmint/${pkgname}/tags" -update_pattern='archive/\K[\d.]+(?=\.tar\.gz)' homepage="http://cinnamon.linuxmint.com/" do_fetch() { diff --git a/srcpkgs/nemo/update b/srcpkgs/nemo/update new file mode 100644 index 0000000000..413af3c979 --- /dev/null +++ b/srcpkgs/nemo/update @@ -0,0 +1,2 @@ +site="https://github.com/linuxmint/${pkgname}/tags" +pattern='archive/\K[\d.]+(?=\.tar\.gz)' diff --git a/srcpkgs/netpbm/template b/srcpkgs/netpbm/template index d3582521ef..3e5bc710e8 100644 --- a/srcpkgs/netpbm/template +++ b/srcpkgs/netpbm/template @@ -10,8 +10,6 @@ short_desc="Toolkit for manipulation of graphic images" maintainer="Christian Neukirchen " license="BSD,GPL-2,custom" homepage="http://netpbm.sourceforge.net/" -update_site="http://svn.code.sf.net/p/netpbm/code/advanced/doc/HISTORY" -update_pattern='Release.\K[\d.]+' nocross=yes do_fetch() { diff --git a/srcpkgs/netpbm/update b/srcpkgs/netpbm/update new file mode 100644 index 0000000000..f48913dd24 --- /dev/null +++ b/srcpkgs/netpbm/update @@ -0,0 +1,2 @@ +site="http://svn.code.sf.net/p/netpbm/code/advanced/doc/HISTORY" +pattern='Release.\K[\d.]+' diff --git a/srcpkgs/netsurf-buildsystem/template b/srcpkgs/netsurf-buildsystem/template index 4e16af7b15..1049635609 100644 --- a/srcpkgs/netsurf-buildsystem/template +++ b/srcpkgs/netsurf-buildsystem/template @@ -8,7 +8,6 @@ short_desc="The Netsurf buildsystem" maintainer="Juan RP " homepage="http://www.netsurf-browser.org" license="MIT" -update_pkgname="${pkgname#netsurf-}" distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname#netsurf-}-${version}.tar.gz" checksum=3903a4a1551c9c202e1d2047344c4f3598c8d9d6c35ebf8cc2e18874bd0c9d61 diff --git a/srcpkgs/netsurf-buildsystem/update b/srcpkgs/netsurf-buildsystem/update new file mode 100644 index 0000000000..2f5c7df22e --- /dev/null +++ b/srcpkgs/netsurf-buildsystem/update @@ -0,0 +1 @@ +pkgname="${pkgname#netsurf-}" diff --git a/srcpkgs/network-ups-tools/template b/srcpkgs/network-ups-tools/template index 3cdbb86de2..281bd1565f 100644 --- a/srcpkgs/network-ups-tools/template +++ b/srcpkgs/network-ups-tools/template @@ -22,8 +22,6 @@ short_desc="NUT provides UPS control and monitoring features" maintainer="Ypnose " license="GPL-2" homepage="http://www.networkupstools.org/" -update_site="${homepage}/download.html" -update_pkgname=nut distfiles="http://www.networkupstools.org/source/2.7/nut-$version.tar.gz" checksum=4d5365359b059d96dfcb77458f361a114d26c84f1297ffcd0c6c166f7200376d wrksrc="nut-${version}" diff --git a/srcpkgs/network-ups-tools/update b/srcpkgs/network-ups-tools/update new file mode 100644 index 0000000000..282f7536da --- /dev/null +++ b/srcpkgs/network-ups-tools/update @@ -0,0 +1,2 @@ +site="${homepage}/download.html" +pkgname=nut diff --git a/srcpkgs/neverball/template b/srcpkgs/neverball/template index a65a0d63d2..e0691c2cb5 100644 --- a/srcpkgs/neverball/template +++ b/srcpkgs/neverball/template @@ -10,7 +10,6 @@ homepage="http://www.neverball.org" license="GPL-2" distfiles="http://www.neverball.org/$pkgname-$version.tar.gz" checksum=73fe63cca4f96e2d355480d03bc0b2904e83a0abdf65fe8c52db5cc3cca88fa0 -update_site="$homepage/download.php" do_build() { make ${makejobs} ENABLE_NLS=1 DATADIR=/usr/share/neverball LOCALEDIR=/usr/share/locale diff --git a/srcpkgs/neverball/update b/srcpkgs/neverball/update new file mode 100644 index 0000000000..1cdc75537d --- /dev/null +++ b/srcpkgs/neverball/update @@ -0,0 +1 @@ +site="$homepage/download.php" diff --git a/srcpkgs/newsbeuter/template b/srcpkgs/newsbeuter/template index 58c76ee3cf..fcf3c0d086 100644 --- a/srcpkgs/newsbeuter/template +++ b/srcpkgs/newsbeuter/template @@ -9,7 +9,6 @@ short_desc="Newsbeuter is the Mutt of RSS feed readers" maintainer="Logen K " license="MIT" homepage="http://www.newsbeuter.org" -update_pattern='r[\d.]+\d+' distfiles="https://github.com/akrennmair/${pkgname}/archive/${version}.tar.gz" checksum=71b0b27bddcc5f5c23c2ed94a9493028b57ca792a29592289b7f5acb1ac8c9e5 diff --git a/srcpkgs/newsbeuter/update b/srcpkgs/newsbeuter/update new file mode 100644 index 0000000000..f7eee0a6c4 --- /dev/null +++ b/srcpkgs/newsbeuter/update @@ -0,0 +1 @@ +pattern='r[\d.]+\d+' diff --git a/srcpkgs/nftables/template b/srcpkgs/nftables/template index a5a4973b94..b6eeec706f 100644 --- a/srcpkgs/nftables/template +++ b/srcpkgs/nftables/template @@ -10,7 +10,6 @@ short_desc="Netfilter nftables userspace tools" maintainer="Christian Neukirchen " license="GPL-2" homepage="http://netfilter.org/projects/nftables/" -update_ignore="0.0*" distfiles="http://www.netfilter.org/projects/${pkgname}/files/${pkgname}-${version}.tar.bz2" checksum=f6ca69b75c68915f9f3a3972274ec68354dfbbcfc0b9fc55c813a0525c351d3c diff --git a/srcpkgs/nftables/update b/srcpkgs/nftables/update new file mode 100644 index 0000000000..a2fe3a776a --- /dev/null +++ b/srcpkgs/nftables/update @@ -0,0 +1 @@ +ignore="0.0*" diff --git a/srcpkgs/nginx/template b/srcpkgs/nginx/template index 28600dd81b..3123b5621f 100644 --- a/srcpkgs/nginx/template +++ b/srcpkgs/nginx/template @@ -27,7 +27,6 @@ short_desc="A high performance web and reverse proxy server" maintainer="Juan RP " license="Simplified BSD" homepage="http://nginx.org" -update_ignore="*.[13579].*" distfiles="http://nginx.org/download/nginx-$version.tar.gz" checksum=b5608c2959d3e7ad09b20fc8f9e5bd4bc87b3bc8ba5936a513c04ed8f1391a18 diff --git a/srcpkgs/nginx/update b/srcpkgs/nginx/update new file mode 100644 index 0000000000..f2f6f0fbdd --- /dev/null +++ b/srcpkgs/nginx/update @@ -0,0 +1 @@ +ignore="*.[13579].*" diff --git a/srcpkgs/nilfs-utils/template b/srcpkgs/nilfs-utils/template index c0bd926834..f5c3e202ae 100644 --- a/srcpkgs/nilfs-utils/template +++ b/srcpkgs/nilfs-utils/template @@ -12,7 +12,6 @@ short_desc="A log-structured file system for Linux - userspace utils" maintainer="Juan RP " license="GPL-2, LGPL-2.1" homepage="http://nilfs.sourceforge.net/" -update_site="${homepage}en/download.html" distfiles="http://www.nilfs.org/download/$pkgname-$version.tar.bz2" checksum=14376ff6ca4e286030aa65cf09e224e02ae8aacd1352711e1cc083243c2f51f0 diff --git a/srcpkgs/nilfs-utils/update b/srcpkgs/nilfs-utils/update new file mode 100644 index 0000000000..74e0c0a6d9 --- /dev/null +++ b/srcpkgs/nilfs-utils/update @@ -0,0 +1 @@ +site="${homepage}en/download.html" diff --git a/srcpkgs/ninja/template b/srcpkgs/ninja/template index d8d589335a..4adc7dc1bd 100644 --- a/srcpkgs/ninja/template +++ b/srcpkgs/ninja/template @@ -6,8 +6,6 @@ hostmakedepends="python asciidoc git" short_desc="Small build system with a focus on speed" maintainer="Juan RP " license="Apache-2.0" -update_site="https://github.com/martine/ninja/tags" -update_pattern='archive/v\K[\d.]+(?=\.tar\.gz)' homepage="http://martine.github.io/ninja/" do_fetch() { diff --git a/srcpkgs/ninja/update b/srcpkgs/ninja/update new file mode 100644 index 0000000000..b46171ff8b --- /dev/null +++ b/srcpkgs/ninja/update @@ -0,0 +1,2 @@ +site="https://github.com/martine/ninja/tags" +pattern='archive/v\K[\d.]+(?=\.tar\.gz)' diff --git a/srcpkgs/nmon/template b/srcpkgs/nmon/template index 6cf7762a26..28f02c7231 100644 --- a/srcpkgs/nmon/template +++ b/srcpkgs/nmon/template @@ -8,7 +8,6 @@ makedepends="ncurses-devel" depends="ncurses" license="GPL-3" homepage="http://nmon.sourceforge.net/pmwiki.php?n=Main.HomePage" -update_pattern="lmon\K.+?(?=\.c)" short_desc="Nigel's performance Monitor for Linux" distfiles="${SOURCEFORGE_SITE}/nmon/files/lmon${version}.c" skip_extraction="lmon${version}.c" diff --git a/srcpkgs/nmon/update b/srcpkgs/nmon/update new file mode 100644 index 0000000000..0c5289c55b --- /dev/null +++ b/srcpkgs/nmon/update @@ -0,0 +1 @@ +pattern="lmon\K.+?(?=\.c)" diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template index 53c9039740..529e946899 100644 --- a/srcpkgs/nodejs/template +++ b/srcpkgs/nodejs/template @@ -10,7 +10,6 @@ short_desc="Evented I/O for V8 javascript" maintainer="Juan RP " license="MIT" homepage="http://nodejs.org/" -update_pattern='node-v\K[\d.]+(?=\.tar)' distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz" checksum=0043656bb1724cb09dbdc960a2fd6ee37d3badb2f9c75562b2d11235daa40a03 diff --git a/srcpkgs/nodejs/update b/srcpkgs/nodejs/update new file mode 100644 index 0000000000..cfbbf5d8fb --- /dev/null +++ b/srcpkgs/nodejs/update @@ -0,0 +1 @@ +pattern='node-v\K[\d.]+(?=\.tar)' diff --git a/srcpkgs/ntfs-3g/template b/srcpkgs/ntfs-3g/template index e30d7f5410..10091546fe 100644 --- a/srcpkgs/ntfs-3g/template +++ b/srcpkgs/ntfs-3g/template @@ -14,7 +14,6 @@ homepage="http://www.tuxera.com/community/ntfs-3g-download/" license="GPL-2" distfiles="http://www.tuxera.com/opensource/${pkgname}_ntfsprogs-${version}.tgz" checksum=4c3099400cb14b231a3c9d718b3a8d152d38555059341ce5fc6d02292a4a5b56 -update_pkgname=ntfs-3g_ntfsprogs post_install() { vmkdir usr/sbin diff --git a/srcpkgs/ntfs-3g/update b/srcpkgs/ntfs-3g/update new file mode 100644 index 0000000000..d7226f3d64 --- /dev/null +++ b/srcpkgs/ntfs-3g/update @@ -0,0 +1 @@ +pkgname=ntfs-3g_ntfsprogs diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template index 9d7ad65c1b..9b83a4039f 100644 --- a/srcpkgs/ntp/template +++ b/srcpkgs/ntp/template @@ -11,7 +11,6 @@ short_desc="The Network Time Protocol daemon and utilities" license="BSD" maintainer="Juan RP " homepage="http://www.ntp.org/" -update_pkgname=ntp-dev distfiles="http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-${version}.tar.gz" checksum=2e920df8b6a5a410567a73767fa458c00c7f0acec3213e69ed0134414a50d8ee diff --git a/srcpkgs/ntp/update b/srcpkgs/ntp/update new file mode 100644 index 0000000000..b6c6da84f7 --- /dev/null +++ b/srcpkgs/ntp/update @@ -0,0 +1 @@ +pkgname=ntp-dev diff --git a/srcpkgs/nvidia-stable/template b/srcpkgs/nvidia-stable/template index ba752be7d9..cdecbdbc38 100644 --- a/srcpkgs/nvidia-stable/template +++ b/srcpkgs/nvidia-stable/template @@ -8,8 +8,6 @@ revision=3 maintainer="Juan RP " license="Propietary NVIDIA license" homepage="http://www.nvidia.com" -update_site="http://www.nvidia.com/object/unix.html" -update_pattern='Long Lived.+>\K[\d.]+(?=)' only_for_archs="i686 x86_64" repository="nonfree" diff --git a/srcpkgs/nvidia-stable/update b/srcpkgs/nvidia-stable/update new file mode 100644 index 0000000000..435438d051 --- /dev/null +++ b/srcpkgs/nvidia-stable/update @@ -0,0 +1,2 @@ +site="http://www.nvidia.com/object/unix.html" +pattern='Long Lived.+>\K[\d.]+(?=)' diff --git a/srcpkgs/nvidia/template b/srcpkgs/nvidia/template index c3c0ee2392..6bd8f6fc1a 100644 --- a/srcpkgs/nvidia/template +++ b/srcpkgs/nvidia/template @@ -8,8 +8,6 @@ revision=3 maintainer="Juan RP " license="Propietary NVIDIA license" homepage="http://www.nvidia.com" -update_site="http://www.nvidia.com/object/unix.html" -update_pattern='Short Lived.+>\K[\d.]+(?=)' only_for_archs="i686 x86_64" repository="nonfree" diff --git a/srcpkgs/nvidia/update b/srcpkgs/nvidia/update new file mode 100644 index 0000000000..faadbf9816 --- /dev/null +++ b/srcpkgs/nvidia/update @@ -0,0 +1,2 @@ +site="http://www.nvidia.com/object/unix.html" +pattern='Short Lived.+>\K[\d.]+(?=)' diff --git a/srcpkgs/nvidia304/template b/srcpkgs/nvidia304/template index f4f251c92d..84630d345a 100644 --- a/srcpkgs/nvidia304/template +++ b/srcpkgs/nvidia304/template @@ -7,8 +7,6 @@ revision=2 maintainer="Juan RP " license="Propietary NVIDIA license" homepage="http://www.nvidia.com" -update_site="http://www.nvidia.com/object/unix.html" -update_pattern='Legacy GPU.+>\K[\d.]+(?=)' repository="nonfree" create_wrksrc=yes diff --git a/srcpkgs/nvidia304/update b/srcpkgs/nvidia304/update new file mode 100644 index 0000000000..fb6228a2b9 --- /dev/null +++ b/srcpkgs/nvidia304/update @@ -0,0 +1,2 @@ +site="http://www.nvidia.com/object/unix.html" +pattern='Legacy GPU.+>\K[\d.]+(?=)' diff --git a/srcpkgs/obconf/template b/srcpkgs/obconf/template index 2299d2c85e..1a8a549726 100644 --- a/srcpkgs/obconf/template +++ b/srcpkgs/obconf/template @@ -10,6 +10,5 @@ short_desc="A GTK2 based configuration tool for the Openbox windowmanager" maintainer="Juan RP " license="GPL-2" homepage="http://openbox.org/wiki/ObConf:About" -update_site="http://openbox.org/wiki/Openbox:Download" distfiles="http://openbox.org/dist/obconf/obconf-${version}.tar.gz" checksum=71a3e5f4ee246a27421ba85044f09d449f8de22680944ece9c471cd46a9356b9 diff --git a/srcpkgs/obconf/update b/srcpkgs/obconf/update new file mode 100644 index 0000000000..f3540adfc6 --- /dev/null +++ b/srcpkgs/obconf/update @@ -0,0 +1 @@ +site="http://openbox.org/wiki/Openbox:Download" diff --git a/srcpkgs/ocl-icd/template b/srcpkgs/ocl-icd/template index 46844a95f1..a253706155 100644 --- a/srcpkgs/ocl-icd/template +++ b/srcpkgs/ocl-icd/template @@ -9,7 +9,6 @@ short_desc="Generic OpenCL ICD loader/demultiplexer" maintainer="John Galt " homepage="https://forge.imag.fr/projects/ocl-icd/" license="GPL-2" -update_pattern=$pkgname' \K[\d.]+' distfiles="https://forge.imag.fr/frs/download.php/598/ocl-icd-${version}.tar.gz" checksum=93a5ac3b23fb10731cc9e6406a58f7a21825562877787ed08c3a41f08b504d0c diff --git a/srcpkgs/ocl-icd/update b/srcpkgs/ocl-icd/update new file mode 100644 index 0000000000..fdf6b37ed2 --- /dev/null +++ b/srcpkgs/ocl-icd/update @@ -0,0 +1 @@ +pattern=$pkgname' \K[\d.]+' diff --git a/srcpkgs/offo-hyphenation/template b/srcpkgs/offo-hyphenation/template index 48b298435e..3c57e14a4f 100644 --- a/srcpkgs/offo-hyphenation/template +++ b/srcpkgs/offo-hyphenation/template @@ -9,7 +9,6 @@ license="LPPL" only_for_archs="i686 x86_64" hostmakedepends="unzip" depends="apache-fop>=1.1_2" -update_pattern="$pkgname/\K[\d.]+(?=/$pkgname)" distfiles=" ${SOURCEFORGE_SITE}/offo/${pkgname}/${version}/${pkgname}-binary.zip ${SOURCEFORGE_SITE}/offo/${pkgname}/${version}/${pkgname}.zip diff --git a/srcpkgs/offo-hyphenation/update b/srcpkgs/offo-hyphenation/update new file mode 100644 index 0000000000..d03ce71606 --- /dev/null +++ b/srcpkgs/offo-hyphenation/update @@ -0,0 +1 @@ +pattern="$pkgname/\K[\d.]+(?=/$pkgname)" diff --git a/srcpkgs/ohsnap-font/template b/srcpkgs/ohsnap-font/template index 3213d3f5d4..af6b5e4125 100644 --- a/srcpkgs/ohsnap-font/template +++ b/srcpkgs/ohsnap-font/template @@ -10,7 +10,6 @@ short_desc="Monospaced font based on artwiz snap" maintainer="Ypnose " license="GPL-2" homepage="http://sourceforge.net/projects/osnapfont/" -update_pkgname="${pkgname%-*}" distfiles="${SOURCEFORGE_SITE}"/osnapfont/${pkgname%-*}-${version}.tar.gz checksum=081729e01699a867b9ad792e63a17d2ab333a6073833a6a8f3f27f32fc27185f wrksrc=${pkgname%-*}-${version} diff --git a/srcpkgs/ohsnap-font/update b/srcpkgs/ohsnap-font/update new file mode 100644 index 0000000000..6f9a291297 --- /dev/null +++ b/srcpkgs/ohsnap-font/update @@ -0,0 +1 @@ +pkgname="${pkgname%-*}" diff --git a/srcpkgs/openbox/template b/srcpkgs/openbox/template index c354da4cbe..0e39bd6adf 100644 --- a/srcpkgs/openbox/template +++ b/srcpkgs/openbox/template @@ -17,7 +17,6 @@ short_desc="Standards compliant, fast, light-weight, extensible window manager" maintainer="Juan RP " license="GPL-2" homepage="http://www.openbox.org" -update_site="${homepage}/wiki/Openbox:Download" distfiles="http://icculus.org/openbox/releases/$pkgname-$version.tar.gz" checksum=128fb4ef11f83f6edb1685cfc04f44a16a5322082fc519f9d7cac84fc658af33 diff --git a/srcpkgs/openbox/update b/srcpkgs/openbox/update new file mode 100644 index 0000000000..145d9b6bed --- /dev/null +++ b/srcpkgs/openbox/update @@ -0,0 +1 @@ +site="${homepage}/wiki/Openbox:Download" diff --git a/srcpkgs/openbsd-netcat/template b/srcpkgs/openbsd-netcat/template index fe15cb3303..363e9b0cd4 100644 --- a/srcpkgs/openbsd-netcat/template +++ b/srcpkgs/openbsd-netcat/template @@ -12,7 +12,6 @@ license="BSD" homepage="http://packages.debian.org/sid/netcat-openbsd" distfiles="${DEBIAN_SITE}/main/n/netcat-openbsd/netcat-openbsd_${version%_*}.orig.tar.gz ${DEBIAN_SITE}/main/n/netcat-openbsd/netcat-openbsd_${version/_/-}.debian.tar.gz" -update_pattern='netcat-openbsd_\K[\d.]+\d+' checksum="40653fe66c1516876b61b07e093d826e2a5463c5d994f1b7e6ce328f3edb211e eee759327ffea293e81d0dde67921b7fcfcad279ffd7a2c9d037bbc8f882b363" wrksrc="netcat-openbsd-${version%_*}" diff --git a/srcpkgs/openbsd-netcat/update b/srcpkgs/openbsd-netcat/update new file mode 100644 index 0000000000..a06cad3138 --- /dev/null +++ b/srcpkgs/openbsd-netcat/update @@ -0,0 +1 @@ +pattern='netcat-openbsd_\K[\d.]+\d+' diff --git a/srcpkgs/openjdk/template b/srcpkgs/openjdk/template index 56e49bc84f..a4b4a7b6b8 100644 --- a/srcpkgs/openjdk/template +++ b/srcpkgs/openjdk/template @@ -45,8 +45,6 @@ short_desc="OpenJDK Java Development Kit" maintainer="Christian Neukirchen " license="GPL-3" homepage="http://openjdk.java.net/" -update_site="http://hg.openjdk.java.net/jdk8u/jdk8u/tags" -update_pattern='jdk\K8u\d+' distfiles=" http://hg.openjdk.java.net/jdk8u/jdk8u/archive/${_repo_ver}.tar.gz>jdk8u-${_repo_ver}.tar.gz http://hg.openjdk.java.net/jdk8u/jdk8u/corba/archive/${_repo_ver}.tar.gz>corba-${_repo_ver}.tar.gz diff --git a/srcpkgs/openjdk/update b/srcpkgs/openjdk/update new file mode 100644 index 0000000000..b7130975e8 --- /dev/null +++ b/srcpkgs/openjdk/update @@ -0,0 +1,2 @@ +site="http://hg.openjdk.java.net/jdk8u/jdk8u/tags" +pattern='jdk\K8u\d+' diff --git a/srcpkgs/openjpeg/template b/srcpkgs/openjpeg/template index f687a0f488..78e0a777d6 100644 --- a/srcpkgs/openjpeg/template +++ b/srcpkgs/openjpeg/template @@ -12,7 +12,6 @@ hostmakedepends="cmake pkg-config" makedepends="libpng-devel lcms2-devel tiff-devel doxygen" distfiles="$SOURCEFORGE_SITE/openjpeg.mirror/${version}/${pkgname}-${version}.tar.gz" checksum="15df7b194a5d8dba0052cd21c17a4dc761149a770a907d73fffb972078c28a87" -update_ignore="2.*" libopenjpeg-devel_package() { short_desc+=" - development files" diff --git a/srcpkgs/openjpeg/update b/srcpkgs/openjpeg/update new file mode 100644 index 0000000000..6bfa7d9a00 --- /dev/null +++ b/srcpkgs/openjpeg/update @@ -0,0 +1 @@ +ignore="2.*" diff --git a/srcpkgs/openjpeg2/template b/srcpkgs/openjpeg2/template index 8806039b71..ae60ba838c 100644 --- a/srcpkgs/openjpeg2/template +++ b/srcpkgs/openjpeg2/template @@ -10,7 +10,6 @@ license="BSD" short_desc="Open-source JPEG 2000 codec written in C language (Version 2)" hostmakedepends="cmake" makedepends="libpng-devel lcms2-devel tiff-devel" -update_pkgname="openjpeg" distfiles="${SOURCEFORGE_SITE}/openjpeg.mirror/${version}/openjpeg-${version}.tar.gz" checksum="1232bb814fd88d8ed314c94f0bfebb03de8559583a33abbe8c64ef3fc0a8ff03" diff --git a/srcpkgs/openjpeg2/update b/srcpkgs/openjpeg2/update new file mode 100644 index 0000000000..8d485090e2 --- /dev/null +++ b/srcpkgs/openjpeg2/update @@ -0,0 +1 @@ +pkgname="openjpeg" diff --git a/srcpkgs/openmpi/template b/srcpkgs/openmpi/template index 7a2c8ff249..5bd66a4493 100644 --- a/srcpkgs/openmpi/template +++ b/srcpkgs/openmpi/template @@ -14,8 +14,6 @@ short_desc="A High Performance Message Passing Library" homepage="http://www.open-mpi.org/" license="Custom" maintainer="Juan RP " -update_site="${homepage}software" -update_ignore="*rc*" distfiles="http://www.open-mpi.org/software/ompi/v1.8/downloads/$pkgname-$version.tar.bz2" checksum=23158d916e92c80e2924016b746a93913ba7fae9fff51bf68d5c2a0ae39a2f8a nocross=yes # libtool -rpath /usr/lib issue diff --git a/srcpkgs/openmpi/update b/srcpkgs/openmpi/update new file mode 100644 index 0000000000..18b7fb5dee --- /dev/null +++ b/srcpkgs/openmpi/update @@ -0,0 +1,2 @@ +site="${homepage}software" +ignore="*rc*" diff --git a/srcpkgs/opensc/template b/srcpkgs/opensc/template index 830d5c8282..a0f519a225 100644 --- a/srcpkgs/opensc/template +++ b/srcpkgs/opensc/template @@ -11,7 +11,6 @@ hostmakedepends="automake libtool pkg-config docbook-xsl libxslt-devel" makedepends="readline-devel pcsclite-devel libressl-devel zlib-devel" configure_args="--enable-man --enable-sm --enable-static=no --enable-doc --with-xsl-stylesheetsdir=/usr/share/xsl/docbook" -update_pattern=$pkgname'-\K[\d.]+(?=\.tar.gz)' distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz" checksum="facdca215f74d999b286ae246ada8d8fcb97ce58f0a6dd30d8b1c180101e9bf0" conf_files="/etc/opensc.conf" diff --git a/srcpkgs/opensc/update b/srcpkgs/opensc/update new file mode 100644 index 0000000000..6e2a9fec6f --- /dev/null +++ b/srcpkgs/opensc/update @@ -0,0 +1 @@ +pattern=$pkgname'-\K[\d.]+(?=\.tar.gz)' diff --git a/srcpkgs/oracle-jdk-arm/template b/srcpkgs/oracle-jdk-arm/template index 30d8c2d2a8..53aa4f2725 100644 --- a/srcpkgs/oracle-jdk-arm/template +++ b/srcpkgs/oracle-jdk-arm/template @@ -23,7 +23,6 @@ checksum="348252453db819a4cda146753b54b86ebd32191e47ff9f9be671e88aaf919d7c" distfiles="http://download.oracle.com/otn-pub/java/jdk/${version}-b${_build}/${_filename}" wrksrc="jdk$_longVersion" -update_pattern="jdk-\K[^-]+(?=-linux-arm-vfp)" do_fetch() { mkdir -p $wrksrc diff --git a/srcpkgs/oracle-jdk-arm/update b/srcpkgs/oracle-jdk-arm/update new file mode 100644 index 0000000000..2cff8d2a7e --- /dev/null +++ b/srcpkgs/oracle-jdk-arm/update @@ -0,0 +1 @@ +pattern="jdk-\K[^-]+(?=-linux-arm-vfp)" diff --git a/srcpkgs/oracle-jdk/template b/srcpkgs/oracle-jdk/template index 351cb27efa..b82df6d2b3 100644 --- a/srcpkgs/oracle-jdk/template +++ b/srcpkgs/oracle-jdk/template @@ -16,7 +16,6 @@ depends="hicolor-icon-theme desktop-file-utils xdg-utils shared-mime-info wget" hostmakedepends="wget" provides="java-environment-${version}_1" replaces="java-environment>=0" -update_pattern=">Java SE \K[^<]+(?=<)" case "${XBPS_TARGET_MACHINE}" in x86_64) diff --git a/srcpkgs/oracle-jdk/update b/srcpkgs/oracle-jdk/update new file mode 100644 index 0000000000..0b8e88c7cb --- /dev/null +++ b/srcpkgs/oracle-jdk/update @@ -0,0 +1 @@ +pattern=">Java SE \K[^<]+(?=<)" diff --git a/srcpkgs/oracle-jre/template b/srcpkgs/oracle-jre/template index af0bf700ae..3bb8b6ecb5 100644 --- a/srcpkgs/oracle-jre/template +++ b/srcpkgs/oracle-jre/template @@ -15,7 +15,6 @@ depends="hicolor-icon-theme desktop-file-utils xdg-utils shared-mime-info wget" hostmakedepends="wget" provides="java-runtime-${version}_1" replaces="java-runtime>=0" -update_pattern=">Java SE \K[^<]+(?=<)" case "${XBPS_TARGET_MACHINE}" in x86_64) diff --git a/srcpkgs/oracle-jre/update b/srcpkgs/oracle-jre/update new file mode 100644 index 0000000000..0b8e88c7cb --- /dev/null +++ b/srcpkgs/oracle-jre/update @@ -0,0 +1 @@ +pattern=">Java SE \K[^<]+(?=<)" diff --git a/srcpkgs/pam/template b/srcpkgs/pam/template index 4c06c3d75c..e957b06ded 100644 --- a/srcpkgs/pam/template +++ b/srcpkgs/pam/template @@ -27,7 +27,6 @@ short_desc="A flexible mechanism for authenticating users" maintainer="Juan RP " homepage="http://www.kernel.org/pub/linux/libs/pam/" license="GPL-2" -update_pkgname=Linux-PAM distfiles="https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-${version}.tar.bz2" checksum=c4b1f23a236d169e2496fea20721578d864ba00f7242d2b41d81050ac87a1e55 diff --git a/srcpkgs/pam/update b/srcpkgs/pam/update new file mode 100644 index 0000000000..8bd5004b9f --- /dev/null +++ b/srcpkgs/pam/update @@ -0,0 +1 @@ +pkgname=Linux-PAM diff --git a/srcpkgs/par/template b/srcpkgs/par/template index d57662cd11..497cb11a73 100644 --- a/srcpkgs/par/template +++ b/srcpkgs/par/template @@ -8,7 +8,6 @@ short_desc="Paragraph reformatter" maintainer="Christian Neukirchen " license="custom" homepage="http://www.nicemice.net/par/" -update_pattern='Par\s\K[\d.]+\d+' distfiles="http://www.nicemice.net/par/Par152-autoconf.tar.gz http://www.nicemice.net/par/Par152.tar.gz" checksum="034fb943236523629eefee0a33fc6afb5b881648a2fc5c6bef7fd1b89ce44d34 diff --git a/srcpkgs/par/update b/srcpkgs/par/update new file mode 100644 index 0000000000..7752633e88 --- /dev/null +++ b/srcpkgs/par/update @@ -0,0 +1 @@ +pattern='<title>Par\s\K[\d.]+\d+' diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template index 4b3eb84ee2..c9e8db09ec 100644 --- a/srcpkgs/pass/template +++ b/srcpkgs/pass/template @@ -11,7 +11,5 @@ short_desc="Stores, retrieves, generates, and synchronizes passwords securely" maintainer="Eivind Uggedal <eivind@uggedal.com>" license="GPL-2" homepage="http://www.passwordstore.org/" -update_site="http://git.zx2c4.com/password-store" -update_pkgname=password-store distfiles="http://git.zx2c4.com/password-store/snapshot/password-store-${version}.tar.xz" checksum=d419d40aa165c1f893e994dd706733374a9db8cf5314124702a061e70e0340f7 diff --git a/srcpkgs/pass/update b/srcpkgs/pass/update new file mode 100644 index 0000000000..ca9195e669 --- /dev/null +++ b/srcpkgs/pass/update @@ -0,0 +1,2 @@ +site="http://git.zx2c4.com/password-store" +pkgname=password-store diff --git a/srcpkgs/pax-utils/template b/srcpkgs/pax-utils/template index a70937a98b..edba1d8068 100644 --- a/srcpkgs/pax-utils/template +++ b/srcpkgs/pax-utils/template @@ -9,7 +9,5 @@ short_desc="PaX aware and related utilities for ELF binaries" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2" homepage="http://hardened.gentoo.org/pax-utils.xml" -update_site="http://ftp.heanet.ie/disk1/gentoo-portage/app-misc/pax-utils/" -update_pattern='pax-utils-\K[\d.]+(?=.ebuild)' distfiles="http://distfiles.gentoo.org/distfiles/${pkgname}-${version}.tar.xz" checksum=578801df0661b1b7b8fed0ce4a9859239f919fd37529907681e51091a1bcb4de diff --git a/srcpkgs/pax-utils/update b/srcpkgs/pax-utils/update new file mode 100644 index 0000000000..9a6ec7104e --- /dev/null +++ b/srcpkgs/pax-utils/update @@ -0,0 +1,2 @@ +site="http://ftp.heanet.ie/disk1/gentoo-portage/app-misc/pax-utils/" +pattern='pax-utils-\K[\d.]+(?=.ebuild)' diff --git a/srcpkgs/pax/template b/srcpkgs/pax/template index 95054616c7..609140aeca 100644 --- a/srcpkgs/pax/template +++ b/srcpkgs/pax/template @@ -8,7 +8,6 @@ short_desc="pax archiver from MirOS (plus tar and cpio)" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="BSD" homepage="https://www.mirbsd.org/MirOS/dist/mir/cpio/" -update_pattern='paxmirabilis-\K[\d.]+\d+' distfiles="https://www.mirbsd.org/MirOS/dist/mir/cpio/paxmirabilis-${version}.cpio.gz" checksum=f464f143f81ff95097eb76e8e7bd9007a3101cbe481a89b09e69bf00e7c95fed diff --git a/srcpkgs/pax/update b/srcpkgs/pax/update new file mode 100644 index 0000000000..00eb48698e --- /dev/null +++ b/srcpkgs/pax/update @@ -0,0 +1 @@ +pattern='paxmirabilis-\K[\d.]+\d+' diff --git a/srcpkgs/pcsc-acsccid/template b/srcpkgs/pcsc-acsccid/template index 2d29565464..43b585d9ed 100644 --- a/srcpkgs/pcsc-acsccid/template +++ b/srcpkgs/pcsc-acsccid/template @@ -11,7 +11,6 @@ configure_args="--enable-udev" hostmakedepends="pkg-config flex perl" makedepends="pcsclite-devel libudev-devel libusb-compat-devel" depends="pcsclite" -update_pkgname="${pkgname/pcsc-/}" distfiles="${SOURCEFORGE_SITE}/${pkgname/pcsc-/}/${pkgname/pcsc-/}-${version}.tar.bz2" checksum=f7d24cb3a4d988f1120a5f17a574065d8add7857bd16eda6096b2c5557eea9dd wrksrc="${pkgname/pcsc-/}-${version}" diff --git a/srcpkgs/pcsc-acsccid/update b/srcpkgs/pcsc-acsccid/update new file mode 100644 index 0000000000..8884de1561 --- /dev/null +++ b/srcpkgs/pcsc-acsccid/update @@ -0,0 +1 @@ +pkgname="${pkgname/pcsc-/}" diff --git a/srcpkgs/pcsclite/template b/srcpkgs/pcsclite/template index 033898443b..56d6b154be 100644 --- a/srcpkgs/pcsclite/template +++ b/srcpkgs/pcsclite/template @@ -16,8 +16,6 @@ checksum="f315047e808d63a3262c4a040f77548af2e04d1fd707e0c2759369b926fbbc3b" wrksrc="pcsc-lite-${version}" conf_files="/etc/reader.conf" replaces="runit-void<20141013_2" -update_site="https://alioth.debian.org/frs/?group_id=30105" -update_pkgname="pcsc-lite" post_install() { vsv pcscd diff --git a/srcpkgs/pcsclite/update b/srcpkgs/pcsclite/update new file mode 100644 index 0000000000..8b527b939d --- /dev/null +++ b/srcpkgs/pcsclite/update @@ -0,0 +1,2 @@ +site="https://alioth.debian.org/frs/?group_id=30105" +pkgname="pcsc-lite" diff --git a/srcpkgs/perl-Cairo/template b/srcpkgs/perl-Cairo/template index c4202a51c2..46d42126d4 100644 --- a/srcpkgs/perl-Cairo/template +++ b/srcpkgs/perl-Cairo/template @@ -11,6 +11,5 @@ short_desc="Perl bindings for Cairo" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://gtk2-perl.sourceforge.net/" license="LGPL-2.1" -update_pkgname=Cairo distfiles="${SOURCEFORGE_SITE}/gtk2-perl/Cairo-$version.tar.gz" checksum=98201dea8f31a369bbf9b276065425dd58b710a8d14478d6e1868ce07911a046 diff --git a/srcpkgs/perl-Cairo/update b/srcpkgs/perl-Cairo/update new file mode 100644 index 0000000000..2bbea7f006 --- /dev/null +++ b/srcpkgs/perl-Cairo/update @@ -0,0 +1 @@ +pkgname=Cairo diff --git a/srcpkgs/perl-ExtUtils-Depends/template b/srcpkgs/perl-ExtUtils-Depends/template index 2ecc1673c5..a49188ffc5 100644 --- a/srcpkgs/perl-ExtUtils-Depends/template +++ b/srcpkgs/perl-ExtUtils-Depends/template @@ -12,6 +12,5 @@ short_desc="Easily build XS extensions that depend on XS extensions" homepage="http://gtk2-perl.sourceforge.net/" license="Artistic, GPL-1" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname="${pkgname/perl-/}" distfiles="${SOURCEFORGE_SITE}/gtk2-perl/ExtUtils-Depends-$version.tar.gz" checksum=3963e9bc3910b38f402bfdc97fff1f2c87a38db8e5efc20f75f080358bc0594c diff --git a/srcpkgs/perl-ExtUtils-Depends/update b/srcpkgs/perl-ExtUtils-Depends/update new file mode 100644 index 0000000000..c25f1eea62 --- /dev/null +++ b/srcpkgs/perl-ExtUtils-Depends/update @@ -0,0 +1 @@ +pkgname="${pkgname/perl-/}" diff --git a/srcpkgs/perl-Glib/template b/srcpkgs/perl-Glib/template index 4474e304bb..6a3aa480e1 100644 --- a/srcpkgs/perl-Glib/template +++ b/srcpkgs/perl-Glib/template @@ -11,6 +11,5 @@ short_desc="Perl bindings for Glib 2" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://gtk2-perl.sourceforge.net/" license="LGPL-2.1" -update_pkgname=Glib distfiles="${SOURCEFORGE_SITE}/gtk2-perl/Glib-$version.tar.gz" checksum=f9d9b36226adbdb65b376d4bc9f00237a4ed85c4975e7cceff4acda28211a4ce diff --git a/srcpkgs/perl-Glib/update b/srcpkgs/perl-Glib/update new file mode 100644 index 0000000000..86d5c59467 --- /dev/null +++ b/srcpkgs/perl-Glib/update @@ -0,0 +1 @@ +pkgname=Glib diff --git a/srcpkgs/perl-Gtk2/template b/srcpkgs/perl-Gtk2/template index 94e88d79f3..ae4029950f 100644 --- a/srcpkgs/perl-Gtk2/template +++ b/srcpkgs/perl-Gtk2/template @@ -11,6 +11,5 @@ short_desc="Perl bindings for Gtk2" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://gtk2-perl.sourceforge.net/" license="LGPL-2.1" -update_pkgname=Gtk2 distfiles="${SOURCEFORGE_SITE}/gtk2-perl/Gtk2-$version.tar.gz" checksum=3bedcb6b491e54f250f98199c6a0c529ae56461abeb098a56b2e5bdcc30f75ce diff --git a/srcpkgs/perl-Gtk2/update b/srcpkgs/perl-Gtk2/update new file mode 100644 index 0000000000..b5bb0cd38d --- /dev/null +++ b/srcpkgs/perl-Gtk2/update @@ -0,0 +1 @@ +pkgname=Gtk2 diff --git a/srcpkgs/perl-LWP/template b/srcpkgs/perl-LWP/template index e45c270766..f5056a674f 100644 --- a/srcpkgs/perl-LWP/template +++ b/srcpkgs/perl-LWP/template @@ -14,7 +14,6 @@ noarch=yes short_desc="LWP - The World-Wide Web library for Perl (libwww-perl)" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://search.cpan.org/dist/libwww-perl/lib/LWP.pm" -update_pkgname="libwww-perl" license="Artistic, GPL-1" distfiles="${CPAN_SITE}/LWP/libwww-perl-${version}.tar.gz" checksum=314d239bdcee4bce849d5c9fe5986a39b2ce12199833ffa32d73a0950531fe94 diff --git a/srcpkgs/perl-LWP/update b/srcpkgs/perl-LWP/update new file mode 100644 index 0000000000..710b907ea8 --- /dev/null +++ b/srcpkgs/perl-LWP/update @@ -0,0 +1 @@ +pkgname="libwww-perl" diff --git a/srcpkgs/perl-Locale-gettext/template b/srcpkgs/perl-Locale-gettext/template index 54b6670118..6429d7b553 100644 --- a/srcpkgs/perl-Locale-gettext/template +++ b/srcpkgs/perl-Locale-gettext/template @@ -11,6 +11,5 @@ short_desc="Permits access from Perl to the gettext() family of functions" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://search.cpan.org/dist/gettext" license="Artistic, GPL-1" -update_pkgname=gettext distfiles="${CPAN_SITE}/Locale/gettext-${version}.tar.gz" checksum=27367f3dc1be79c9ed178732756e37e4cfce45f9e2a27ebf26e1f40d80124694 diff --git a/srcpkgs/perl-Locale-gettext/update b/srcpkgs/perl-Locale-gettext/update new file mode 100644 index 0000000000..76b5180c6f --- /dev/null +++ b/srcpkgs/perl-Locale-gettext/update @@ -0,0 +1 @@ +pkgname=gettext diff --git a/srcpkgs/perl-Pango/template b/srcpkgs/perl-Pango/template index 5ca59c7790..04d440be4c 100644 --- a/srcpkgs/perl-Pango/template +++ b/srcpkgs/perl-Pango/template @@ -11,6 +11,5 @@ short_desc="Perl bindings for Pango" maintainer="Carlo Dormeletti <carloDOTdormelettiATaliceDOTit>" homepage="http://gtk2-perl.sourceforge.net/" license="LGPL-2.1" -update_pkgname=Pango distfiles="${SOURCEFORGE_SITE}/gtk2-perl/Pango-$version.tar.gz" checksum=9f7039bf79bca027009fdc2b0472ecf2d2e0e30227fb92c5ecd1c867dae99264 diff --git a/srcpkgs/perl-Pango/update b/srcpkgs/perl-Pango/update new file mode 100644 index 0000000000..e55b79df53 --- /dev/null +++ b/srcpkgs/perl-Pango/update @@ -0,0 +1 @@ +pkgname=Pango diff --git a/srcpkgs/perl-Term-ReadKey/template b/srcpkgs/perl-Term-ReadKey/template index f237fced4f..c83ece81fa 100644 --- a/srcpkgs/perl-Term-ReadKey/template +++ b/srcpkgs/perl-Term-ReadKey/template @@ -10,7 +10,6 @@ depends="${makedepends}" short_desc="Perl module for simple terminal control" maintainer="Dominik Honnef <dominik@honnef.co>" homepage="http://search.cpan.org/dist/TermReadKey/ReadKey.pm" -update_pkgname="TermReadKey" license="Artistic" distfiles="${CPAN_SITE}/Term/TermReadKey-${version}.tar.gz" checksum=58b90e8908e686d03a161590c1dd870e8a1b005715ca8e6d5080a32459e1e9f8 diff --git a/srcpkgs/perl-Term-ReadKey/update b/srcpkgs/perl-Term-ReadKey/update new file mode 100644 index 0000000000..50ba9fe749 --- /dev/null +++ b/srcpkgs/perl-Term-ReadKey/update @@ -0,0 +1 @@ +pkgname="TermReadKey" diff --git a/srcpkgs/perl-pcsc/template b/srcpkgs/perl-pcsc/template index f3b5603f39..2d6f81f869 100644 --- a/srcpkgs/perl-pcsc/template +++ b/srcpkgs/perl-pcsc/template @@ -12,7 +12,6 @@ short_desc="Perl wrapper to the PC/SC smartcard library (pcsc-lite)" maintainer="Carlo Dormeletti <carloDOTdormelettiATaliceDOTit>" homepage="http://ludovic.rousseau.free.fr/softwares/pcsc-perl/index.html" license="GPL-2" -update_pkgname=pcsc-perl distfiles="http://ludovic.rousseau.free.fr/softwares/${_origname}/${_origname}-${version}.tar.bz2" checksum=a5f7dfb30be0346cfe80d47749994dab861592929d80786104693987b36e3684 diff --git a/srcpkgs/perl-pcsc/update b/srcpkgs/perl-pcsc/update new file mode 100644 index 0000000000..0965f7b633 --- /dev/null +++ b/srcpkgs/perl-pcsc/update @@ -0,0 +1 @@ +pkgname=pcsc-perl diff --git a/srcpkgs/plan9port/template b/srcpkgs/plan9port/template index bb109db74f..b890e7adeb 100644 --- a/srcpkgs/plan9port/template +++ b/srcpkgs/plan9port/template @@ -9,7 +9,6 @@ short_desc="Port of many Plan 9 programs to Unix-like operating systems" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="custom" homepage="http://swtch.com/plan9port/" -update_site="https://code.google.com/p/plan9port/downloads/list" distfiles="https://${pkgname}.googlecode.com/files/${pkgname}-${version}.tgz" checksum=cbb826cde693abdaa2051c49e7ebf75119bf2a4791fe3b3229f1ac36a408eaeb diff --git a/srcpkgs/plan9port/update b/srcpkgs/plan9port/update new file mode 100644 index 0000000000..a0bb0fdac8 --- /dev/null +++ b/srcpkgs/plan9port/update @@ -0,0 +1 @@ +site="https://code.google.com/p/plan9port/downloads/list" diff --git a/srcpkgs/plib/template b/srcpkgs/plib/template index d8a3ceb8ed..f172ab2a37 100644 --- a/srcpkgs/plib/template +++ b/srcpkgs/plib/template @@ -8,7 +8,6 @@ short_desc="Suite of Portable Game Libraries" maintainer="Enno Boland <eb@s01.de>" license="LGPL-2" homepage="http://plib.sourceforge.net" -update_site="${homepage}/download.html" distfiles="http://plib.sourceforge.net/dist/plib-1.8.5.tar.gz" makedepends="MesaLib-devel libX11-devel libXi-devel libXmu-devel" hostmakedepends="autoconf automake libtool" diff --git a/srcpkgs/plib/update b/srcpkgs/plib/update new file mode 100644 index 0000000000..8ccb863442 --- /dev/null +++ b/srcpkgs/plib/update @@ -0,0 +1 @@ +site="${homepage}/download.html" diff --git a/srcpkgs/pocketsphinx/template b/srcpkgs/pocketsphinx/template index c3ceefc00b..9b91d6aa6e 100644 --- a/srcpkgs/pocketsphinx/template +++ b/srcpkgs/pocketsphinx/template @@ -6,7 +6,6 @@ short_desc="Lightweight speech recognition system" maintainer="Martin Riese <grauehaare@gmx.de>" license="GPL-2" homepage="http://cmusphinx.sourceforge.net" -update_ignore="*alpha*" distfiles="${SOURCEFORGE_SITE}/cmusphinx/${pkgname}/${version}/${pkgname}-${version}.tar.gz" checksum="874c4c083d91c8ff26a2aec250b689e537912ff728923c141c4dac48662cce7a" build_style=gnu-configure diff --git a/srcpkgs/pocketsphinx/update b/srcpkgs/pocketsphinx/update new file mode 100644 index 0000000000..70f8b7290d --- /dev/null +++ b/srcpkgs/pocketsphinx/update @@ -0,0 +1 @@ +ignore="*alpha*" diff --git a/srcpkgs/polarssl/template b/srcpkgs/polarssl/template index 9a5465dd4b..d2231b5de1 100644 --- a/srcpkgs/polarssl/template +++ b/srcpkgs/polarssl/template @@ -10,7 +10,6 @@ short_desc="Portable cryptographic and SSL/TLS library" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://www.polarssl.org" -update_pattern=$pkgname'-\K[\d.]+' distfiles="http://www.polarssl.org/code/releases/polarssl-${version}-gpl.tgz" checksum=d3605afc28ed4b7d1d9e3142d72e42855e4a23c07c951bbb0299556b02d36755 diff --git a/srcpkgs/polarssl/update b/srcpkgs/polarssl/update new file mode 100644 index 0000000000..8e6a071f4b --- /dev/null +++ b/srcpkgs/polarssl/update @@ -0,0 +1 @@ +pattern=$pkgname'-\K[\d.]+' diff --git a/srcpkgs/polkit-kde/template b/srcpkgs/polkit-kde/template index ee949cae53..7054e6eae8 100644 --- a/srcpkgs/polkit-kde/template +++ b/srcpkgs/polkit-kde/template @@ -10,6 +10,5 @@ short_desc="Daemon providing a polkit authentication UI for KDE" maintainer="Juan RP <xtraeme@gmail.com>" homepage="https://projects.kde.org/projects/extragear/base/polkit-kde-agent-1" license="GPL-2" -update_pkgname="${pkgname}-agent-1" distfiles="http://download.kde.org/stable/apps/KDE4.x/admin/${pkgname}-agent-1-${version}.tar.bz2" checksum=e371ff2698431decc825bb146d638de432f5fffd09046e225270c30dbac1b467 diff --git a/srcpkgs/polkit-kde/update b/srcpkgs/polkit-kde/update new file mode 100644 index 0000000000..ae8cfb8d0a --- /dev/null +++ b/srcpkgs/polkit-kde/update @@ -0,0 +1 @@ +pkgname="${pkgname}-agent-1" diff --git a/srcpkgs/polkit-qt/template b/srcpkgs/polkit-qt/template index 8e040d5706..760e5029dc 100644 --- a/srcpkgs/polkit-qt/template +++ b/srcpkgs/polkit-qt/template @@ -7,8 +7,6 @@ hostmakedepends="pkg-config cmake automoc4 git" makedepends="polkit-devel qt-devel" short_desc="Qt-style PolicyKit API" maintainer="Juan RP <xtraeme@gmail.com>" -update_site="http://quickgit.kde.org/?p=polkit-qt-1.git" -update_pattern=';t=v\K[\d.]+(?=")' homepage="https://projects.kde.org/projects/kdesupport/polkit-qt-1" license="LGPL-2.1" diff --git a/srcpkgs/polkit-qt/update b/srcpkgs/polkit-qt/update new file mode 100644 index 0000000000..513ce957fd --- /dev/null +++ b/srcpkgs/polkit-qt/update @@ -0,0 +1,2 @@ +site="http://quickgit.kde.org/?p=polkit-qt-1.git" +pattern=';t=v\K[\d.]+(?=")' diff --git a/srcpkgs/polkit-qt5/template b/srcpkgs/polkit-qt5/template index c020eaa932..8a9f81b7cf 100644 --- a/srcpkgs/polkit-qt5/template +++ b/srcpkgs/polkit-qt5/template @@ -7,8 +7,6 @@ hostmakedepends="pkg-config cmake automoc4 git" makedepends="polkit-devel qt5-devel" short_desc="Qt-style PolicyKit API (Qt5)" maintainer="Juan RP <xtraeme@gmail.com>" -update_site="http://quickgit.kde.org/?p=polkit-qt-1.git" -update_pattern=';t=v\K[\d.]+(?=")' homepage="https://projects.kde.org/projects/kdesupport/polkit-qt-1" license="LGPL-2.1" diff --git a/srcpkgs/polkit-qt5/update b/srcpkgs/polkit-qt5/update new file mode 100644 index 0000000000..513ce957fd --- /dev/null +++ b/srcpkgs/polkit-qt5/update @@ -0,0 +1,2 @@ +site="http://quickgit.kde.org/?p=polkit-qt-1.git" +pattern=';t=v\K[\d.]+(?=")' diff --git a/srcpkgs/poppler-qt4/template b/srcpkgs/poppler-qt4/template index 67c4e5e9d4..bc57d089e7 100644 --- a/srcpkgs/poppler-qt4/template +++ b/srcpkgs/poppler-qt4/template @@ -20,7 +20,6 @@ short_desc="PDF rendering library - Qt4 bindings" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://poppler.freedesktop.org" -update_pkgname=poppler distfiles="${homepage}/poppler-$version.tar.xz" checksum=2ccf6e234209aa5082ba99d3547e6798cd8758e7a921c72c00aedf0d5793fd06 diff --git a/srcpkgs/poppler-qt4/update b/srcpkgs/poppler-qt4/update new file mode 100644 index 0000000000..53821bc929 --- /dev/null +++ b/srcpkgs/poppler-qt4/update @@ -0,0 +1 @@ +pkgname=poppler diff --git a/srcpkgs/postgresql/template b/srcpkgs/postgresql/template index 7982dbe2f5..023f6a39fc 100644 --- a/srcpkgs/postgresql/template +++ b/srcpkgs/postgresql/template @@ -12,8 +12,6 @@ configure_args="--with-openssl --with-python short_desc="Sophisticated open-source Object-Relational DBMS" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.postgresql.org" -update_site="http://www.postgresql.org/ftp/source/" -update_pattern='v\K[\d.]+(?!beta)' license="BSD" distfiles="ftp://ftp.postgresql.org/pub/source/v${version}/${pkgname}-${version}.tar.bz2" checksum=14176ffb1f90a189e7626214365be08ea2bfc26f26994bafb4235be314b9b4b0 diff --git a/srcpkgs/postgresql/update b/srcpkgs/postgresql/update new file mode 100644 index 0000000000..d795e318ea --- /dev/null +++ b/srcpkgs/postgresql/update @@ -0,0 +1,2 @@ +site="http://www.postgresql.org/ftp/source/" +pattern='v\K[\d.]+(?!beta)' diff --git a/srcpkgs/privoxy/template b/srcpkgs/privoxy/template index 448d200fd8..190a3e9f6b 100644 --- a/srcpkgs/privoxy/template +++ b/srcpkgs/privoxy/template @@ -23,7 +23,6 @@ maintainer="Eivind Uggedal <eivind@uggedal.com>" license="GPL-2" homepage="http://www.privoxy.org/" distfiles="${SOURCEFORGE_SITE}/ijbswa/${pkgname}-${version}-stable-src.tar.gz" -update_ignore="*.mpkg" checksum=1a214fec1f3616ea7ff42f1ecdb67ce82690199ec403de9d34b99d0896efcc41 pre_configure() { diff --git a/srcpkgs/privoxy/update b/srcpkgs/privoxy/update new file mode 100644 index 0000000000..51e2c4d638 --- /dev/null +++ b/srcpkgs/privoxy/update @@ -0,0 +1 @@ +ignore="*.mpkg" diff --git a/srcpkgs/puppet/template b/srcpkgs/puppet/template index 629356f568..6d4296161f 100644 --- a/srcpkgs/puppet/template +++ b/srcpkgs/puppet/template @@ -10,7 +10,6 @@ short_desc="Server automation framework and application" maintainer="Juan RP <xtraeme@gmail.com>" license="Apache-2.0" homepage="http://puppetlabs.com/facter" -update_pattern=$pkgname'-\K[\d.]+(?=\.tar.gz)' distfiles="http://downloads.puppetlabs.com/$pkgname/$pkgname-$version.tar.gz" checksum=4a3bd7ddb51072c3dd898a8de158cde204a2d8fd0b84e8ac806b84c074348637 diff --git a/srcpkgs/puppet/update b/srcpkgs/puppet/update new file mode 100644 index 0000000000..6e2a9fec6f --- /dev/null +++ b/srcpkgs/puppet/update @@ -0,0 +1 @@ +pattern=$pkgname'-\K[\d.]+(?=\.tar.gz)' diff --git a/srcpkgs/puzzles/template b/srcpkgs/puzzles/template index 76df925048..8fc07ff223 100644 --- a/srcpkgs/puzzles/template +++ b/srcpkgs/puzzles/template @@ -8,8 +8,6 @@ short_desc="Simon Tatham's Portable Puzzle Collection" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="MIT" homepage="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" -update_site="http://svn.tartarus.org/sgt/puzzles/" -update_pattern='Revision\s\K\d+(?=.*of)' distfiles="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${version}.tar.gz" checksum=4c9a160807f72ed3e19eb4ff03055eeab40c250fa674f78c1c7c98f306c509c3 diff --git a/srcpkgs/puzzles/update b/srcpkgs/puzzles/update new file mode 100644 index 0000000000..fe49dcaad5 --- /dev/null +++ b/srcpkgs/puzzles/update @@ -0,0 +1,2 @@ +site="http://svn.tartarus.org/sgt/puzzles/" +pattern='Revision\s\K\d+(?=.*of)' diff --git a/srcpkgs/python-PyQt4/template b/srcpkgs/python-PyQt4/template index ea8dd38855..a9e6bb55d9 100644 --- a/srcpkgs/python-PyQt4/template +++ b/srcpkgs/python-PyQt4/template @@ -11,7 +11,6 @@ short_desc="Python2 bindings for the Qt4 toolkit" _short_desc="${short_desc/Python2/Python3.4}" maintainer="Alessio Sergi <al3hex@gmail.com>" homepage="http://www.riverbankcomputing.co.uk/software/pyqt/intro" -update_pkgname="PyQt-x11-gpl" license="GPL-2, GPL-3" distfiles="${SOURCEFORGE_SITE}/pyqt/PyQt-x11-gpl-${version}.tar.gz" checksum=853780dcdbe2e6ba785d703d059b096e1fc49369d3e8d41a060be874b8745686 diff --git a/srcpkgs/python-PyQt4/update b/srcpkgs/python-PyQt4/update new file mode 100644 index 0000000000..d71994b501 --- /dev/null +++ b/srcpkgs/python-PyQt4/update @@ -0,0 +1 @@ +pkgname="PyQt-x11-gpl" diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template index e7b70d7ff1..e22c35523f 100644 --- a/srcpkgs/python-PyQt5/template +++ b/srcpkgs/python-PyQt5/template @@ -14,7 +14,6 @@ short_desc="Python2 bindings for the Qt5 toolkit" _short_desc="${short_desc/Python2/Python3.4}" maintainer="Alessio Sergi <al3hex@gmail.com>" homepage="http://www.riverbankcomputing.co.uk/software/pyqt/intro" -update_pkgname="PyQt-gpl" license="GPL-3" distfiles="${SOURCEFORGE_SITE}/pyqt/PyQt-gpl-${version}.tar.gz" checksum=bdc06613caa718977fcee43ce3bc4e959ea1efd02d86268d8c478b48c259448e diff --git a/srcpkgs/python-PyQt5/update b/srcpkgs/python-PyQt5/update new file mode 100644 index 0000000000..b6df6abdaa --- /dev/null +++ b/srcpkgs/python-PyQt5/update @@ -0,0 +1 @@ +pkgname="PyQt-gpl" diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template index 8a3c718afe..80122e8f97 100644 --- a/srcpkgs/python-Pygments/template +++ b/srcpkgs/python-Pygments/template @@ -12,7 +12,6 @@ short_desc="Python2 syntax highlighter" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://pygments.org/" license="BSD" -update_ignore="*rc*" distfiles="${PYPI_SITE}/P/Pygments/Pygments-${version}.tar.gz" checksum=5e039e1d40d232981ed58914b6d1ac2e453a7e83ddea22ef9f3eeadd01de45cb diff --git a/srcpkgs/python-Pygments/update b/srcpkgs/python-Pygments/update new file mode 100644 index 0000000000..e299d00ea6 --- /dev/null +++ b/srcpkgs/python-Pygments/update @@ -0,0 +1 @@ +ignore="*rc*" diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template index f26903bd33..aca6fbd05e 100644 --- a/srcpkgs/python-atspi/template +++ b/srcpkgs/python-atspi/template @@ -15,7 +15,6 @@ short_desc="Python2 bindings for AT-SPI" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.gnome.org/" license="GPL-2" -update_pkgname=pyatspi distfiles="${GNOME_SITE}/pyatspi/${version%.*}/pyatspi-${version}.tar.xz" checksum=4e6cd801412a090dcc7ec2a27298dee5e84dc0af11479d5d5c061254b8ea6ac4 diff --git a/srcpkgs/python-atspi/update b/srcpkgs/python-atspi/update new file mode 100644 index 0000000000..a2771db6a3 --- /dev/null +++ b/srcpkgs/python-atspi/update @@ -0,0 +1 @@ +pkgname=pyatspi diff --git a/srcpkgs/python-cairo/template b/srcpkgs/python-cairo/template index 97dfc47502..f57d0985e8 100644 --- a/srcpkgs/python-cairo/template +++ b/srcpkgs/python-cairo/template @@ -15,7 +15,6 @@ short_desc="Python2 bindings for the cairo graphics library" homepage="http://cairographics.org/pycairo/" license="LGPL-3" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname=py2cairo distfiles="http://cairographics.org/releases/py2cairo-${version}.tar.bz2" checksum=d30439f06c2ec1a39e27464c6c828b6eface3b22ee17b2de05dc409e429a7431 diff --git a/srcpkgs/python-cairo/update b/srcpkgs/python-cairo/update new file mode 100644 index 0000000000..f3659f4748 --- /dev/null +++ b/srcpkgs/python-cairo/update @@ -0,0 +1 @@ +pkgname=py2cairo diff --git a/srcpkgs/python-crypto/template b/srcpkgs/python-crypto/template index 9cff956c77..997e4df3f8 100644 --- a/srcpkgs/python-crypto/template +++ b/srcpkgs/python-crypto/template @@ -14,8 +14,6 @@ short_desc="The Python Cryptography Toolkit (Python2)" maintainer="Juan RP <xtraeme@gmail.com>" homepage="https://www.dlitz.net/software/pycrypto/" license="PSF, Public domain" -update_pkgname=pycrypto -update_ignore="*a* *b*" distfiles="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-$version.tar.gz" checksum=f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c diff --git a/srcpkgs/python-crypto/update b/srcpkgs/python-crypto/update new file mode 100644 index 0000000000..5c13dd3231 --- /dev/null +++ b/srcpkgs/python-crypto/update @@ -0,0 +1,2 @@ +pkgname=pycrypto +ignore="*a* *b*" diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template index e92c31a370..1170fca66c 100644 --- a/srcpkgs/python-cups/template +++ b/srcpkgs/python-cups/template @@ -11,7 +11,6 @@ short_desc="Python2 CUPS bindings" homepage="https://pypi.python.org/pypi/pycups" license="GPL-2" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname=pycups distfiles="${PYPI_SITE}/p/pycups/pycups-${version}.tar.bz2" checksum=44346cbd9d6d1785e5cb5d76b661aff2039e920283bd6af251b72a1e668237c4 diff --git a/srcpkgs/python-cups/update b/srcpkgs/python-cups/update new file mode 100644 index 0000000000..77791f0e7e --- /dev/null +++ b/srcpkgs/python-cups/update @@ -0,0 +1 @@ +pkgname=pycups diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template index f97e77fe27..7a730ea46d 100644 --- a/srcpkgs/python-curl/template +++ b/srcpkgs/python-curl/template @@ -13,7 +13,6 @@ short_desc="Python2 interface to cURL library" homepage="http://pycurl.sourceforge.net/" license="LGPL-2.1, MIT" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname="pycurl" distfiles="http://pycurl.sourceforge.net/download/pycurl-${version}.tar.gz" checksum=6e9770f80459757f73bd71af82fbb29cd398b38388cdf1beab31ea91a331bc6c diff --git a/srcpkgs/python-curl/update b/srcpkgs/python-curl/update new file mode 100644 index 0000000000..d047547081 --- /dev/null +++ b/srcpkgs/python-curl/update @@ -0,0 +1 @@ +pkgname="pycurl" diff --git a/srcpkgs/python-dbus/template b/srcpkgs/python-dbus/template index db07f17d6d..4af005274f 100644 --- a/srcpkgs/python-dbus/template +++ b/srcpkgs/python-dbus/template @@ -13,7 +13,6 @@ short_desc="D-Bus Python2 bindings" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2, LGPL-2.1" homepage="http://www.freedesktop.org/wiki/Software/DBusBindings" -update_pkgname="dbus-python" distfiles="http://dbus.freedesktop.org/releases/dbus-python/dbus-python-${version}.tar.gz" checksum=e12c6c8b2bf3a9302f75166952cbe41d6b38c3441bbc6767dbd498942316c6df diff --git a/srcpkgs/python-dbus/update b/srcpkgs/python-dbus/update new file mode 100644 index 0000000000..19e0095855 --- /dev/null +++ b/srcpkgs/python-dbus/update @@ -0,0 +1 @@ +pkgname="dbus-python" diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template index a6961d40e6..62e21728b7 100644 --- a/srcpkgs/python-docutils/template +++ b/srcpkgs/python-docutils/template @@ -13,7 +13,6 @@ short_desc="Text processing system to convert to various formats (Python2)" maintainer="Alessio Sergi <al3hex@gmail.com>" homepage="http://docutils.sourceforge.net" license="BSD-2-Clause, GPL-3, PSF, Public Domain" -update_pkgname="docutils" distfiles="${SOURCEFORGE_SITE}/docutils/docutils-${version}.tar.gz" checksum=c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa diff --git a/srcpkgs/python-docutils/update b/srcpkgs/python-docutils/update new file mode 100644 index 0000000000..f3a60a12d0 --- /dev/null +++ b/srcpkgs/python-docutils/update @@ -0,0 +1 @@ +pkgname="docutils" diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template index ea531201e7..62b70188e8 100644 --- a/srcpkgs/python-fuse/template +++ b/srcpkgs/python-fuse/template @@ -11,6 +11,5 @@ short_desc="FUSE bindings for Python2" maintainer="Eivind Uggedal <eivind@uggedal.com>" license="LGPL-2.1" homepage="http://sourceforge.net/projects/fuse/" -update_pkgname=fuse-python distfiles="${SOURCEFORGE_SITE}/fuse/fuse-python-${version}.tar.gz" checksum=11ead462f8d0f8302ee07b33fe93dc42c653861a16c8802a31903a7355b8351b diff --git a/srcpkgs/python-fuse/update b/srcpkgs/python-fuse/update new file mode 100644 index 0000000000..e568108677 --- /dev/null +++ b/srcpkgs/python-fuse/update @@ -0,0 +1 @@ +pkgname=fuse-python diff --git a/srcpkgs/python-gconf/template b/srcpkgs/python-gconf/template index 6f83bc3420..72a222c715 100644 --- a/srcpkgs/python-gconf/template +++ b/srcpkgs/python-gconf/template @@ -17,7 +17,6 @@ short_desc="Python bindings for interacting with GConf" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://www.gnome.org" -update_pkgname="gnome-python" distfiles="${GNOME_SITE}/gnome-python/2.28/gnome-python-${version}.tar.bz2" checksum=759ce9344cbf89cf7f8449d945822a0c9f317a494f56787782a901e4119b96d8 diff --git a/srcpkgs/python-gconf/update b/srcpkgs/python-gconf/update new file mode 100644 index 0000000000..2b4a729702 --- /dev/null +++ b/srcpkgs/python-gconf/update @@ -0,0 +1 @@ +pkgname="gnome-python" diff --git a/srcpkgs/python-gobject/template b/srcpkgs/python-gobject/template index 4834e485b8..af43768a27 100644 --- a/srcpkgs/python-gobject/template +++ b/srcpkgs/python-gobject/template @@ -11,7 +11,6 @@ pycompile_module="gi pygtkcompat" short_desc="Python2 bindings for GObject" homepage="https://live.gnome.org/PyGObject" license="LGPL-2.1" -update_pkgname="pygobject" distfiles="${GNOME_SITE}/pygobject/${version%.*}/pygobject-${version}.tar.xz" maintainer="Juan RP <xtraeme@gmail.com>" diff --git a/srcpkgs/python-gobject/update b/srcpkgs/python-gobject/update new file mode 100644 index 0000000000..46e4c14707 --- /dev/null +++ b/srcpkgs/python-gobject/update @@ -0,0 +1 @@ +pkgname="pygobject" diff --git a/srcpkgs/python-gobject2/template b/srcpkgs/python-gobject2/template index 41988fb603..420354e75c 100644 --- a/srcpkgs/python-gobject2/template +++ b/srcpkgs/python-gobject2/template @@ -13,7 +13,6 @@ pycompile_module="glib gobject gtk-2.0 pygtk" replaces="pygobject<3.0.0 pygobject2>=0" short_desc="Python2 bindings for GObject (GLib 2.x)" homepage="http://www.pygtk.org/" -update_pkgname="pygobject" license="LGPL-2.1" maintainer="Juan RP <xtraeme@gmail.com>" distfiles="${GNOME_SITE}/pygobject/${version%.*}/pygobject-${version}.tar.xz" diff --git a/srcpkgs/python-gobject2/update b/srcpkgs/python-gobject2/update new file mode 100644 index 0000000000..46e4c14707 --- /dev/null +++ b/srcpkgs/python-gobject2/update @@ -0,0 +1 @@ +pkgname="pygobject" diff --git a/srcpkgs/python-notify/template b/srcpkgs/python-notify/template index 93569ebd3f..b031e6fb3a 100644 --- a/srcpkgs/python-notify/template +++ b/srcpkgs/python-notify/template @@ -15,7 +15,6 @@ short_desc="Python2 bindings for libnotify" homepage="http://www.galago-project.org/" license="LGPL-2.1" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname="notify-python" distfiles="http://www.galago-project.org/files/releases/source/notify-python/notify-python-${version}.tar.gz" checksum=8c5ee28017fdc5b110c31cb76503e535e15e0c60b9a1f1e95ff6c018dd806022 diff --git a/srcpkgs/python-notify/update b/srcpkgs/python-notify/update new file mode 100644 index 0000000000..bd14e9008e --- /dev/null +++ b/srcpkgs/python-notify/update @@ -0,0 +1 @@ +pkgname="notify-python" diff --git a/srcpkgs/python-numpy/template b/srcpkgs/python-numpy/template index 23f5c2eca1..06002fe860 100644 --- a/srcpkgs/python-numpy/template +++ b/srcpkgs/python-numpy/template @@ -12,7 +12,6 @@ short_desc="Fast and sophisticated array facility to Python2" maintainer="Alessio Sergi <al3hex@gmail.com>" homepage="http://www.numpy.org/" license="3-clause-BSD" -update_pkgname="numpy" distfiles="${SOURCEFORGE_SITE}/numpy/NumPy/${version}/numpy-${version}.tar.gz" checksum=0075bbe07e30b659ae4415446f45812dc1b96121a493a4a1f8b1ba77b75b1e1c diff --git a/srcpkgs/python-numpy/update b/srcpkgs/python-numpy/update new file mode 100644 index 0000000000..3c1b7899bb --- /dev/null +++ b/srcpkgs/python-numpy/update @@ -0,0 +1 @@ +pkgname="numpy" diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template index 271300d7e0..ca0f578de9 100644 --- a/srcpkgs/python-parsing/template +++ b/srcpkgs/python-parsing/template @@ -14,7 +14,6 @@ short_desc="Python parsing module (Python2)" maintainer="Juan RP <xtraeme@gmail.com>" license="MIT" homepage="http://pyparsing.wikispaces.com/" -update_pkgname="pyparsing" distfiles="https://pypi.python.org/packages/source/p/pyparsing/pyparsing-${version}.tar.gz" checksum=06e729e1cbf5274703b1f47b6135ed8335999d547f9d8cf048b210fb8ebf844f diff --git a/srcpkgs/python-parsing/update b/srcpkgs/python-parsing/update new file mode 100644 index 0000000000..4f7cc547ce --- /dev/null +++ b/srcpkgs/python-parsing/update @@ -0,0 +1 @@ +pkgname="pyparsing" diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template index 93aae86f01..bc4abae2ac 100644 --- a/srcpkgs/python-polib/template +++ b/srcpkgs/python-polib/template @@ -13,7 +13,6 @@ short_desc="Python2 library to manipulate gettext files" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://bitbucket.org/izi/polib/" license="MIT" -update_pkgname="polib" distfiles="${PYPI_SITE}/p/polib/polib-${version}.tar.gz" checksum=20d2a0d589a692c11df549bd7cda83c665eef2a83e017b843fecdf956edbad74 diff --git a/srcpkgs/python-polib/update b/srcpkgs/python-polib/update new file mode 100644 index 0000000000..e62b60d9b0 --- /dev/null +++ b/srcpkgs/python-polib/update @@ -0,0 +1 @@ +pkgname="polib" diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template index be065c84ca..4f403fece3 100644 --- a/srcpkgs/python-pyside/template +++ b/srcpkgs/python-pyside/template @@ -12,7 +12,6 @@ short_desc="Qt bindings for Python" maintainer="Enno Boland <eb@s01.de>" homepage="http://qt-project.org/wiki/PySide" license="LGPL" -update_pkgname="${_realname}-qt4.8+" distfiles="http://download.qt-project.org/official_releases/${_realname}/${_realname}-qt4.8+${version}.tar.bz2" checksum=a1a9df746378efe52211f1a229f77571d1306fb72830bbf73f0d512ed9856ae1 diff --git a/srcpkgs/python-pyside/update b/srcpkgs/python-pyside/update new file mode 100644 index 0000000000..16cff1d644 --- /dev/null +++ b/srcpkgs/python-pyside/update @@ -0,0 +1 @@ +pkgname="${_realname}-qt4.8+" diff --git a/srcpkgs/python-shiboken/template b/srcpkgs/python-shiboken/template index fca5d186f9..e7c26dbcca 100644 --- a/srcpkgs/python-shiboken/template +++ b/srcpkgs/python-shiboken/template @@ -11,7 +11,6 @@ short_desc="Support library for Python bindings" maintainer="Enno Boland <eb@s01.de>" homepage="http://www.pyside.org" license="LGPL" -update_pkgname=$_realname distfiles="http://download.qt-project.org/official_releases/pyside/${_realname}-${version}.tar.bz2" checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4 wrksrc=${_realname}-${version} diff --git a/srcpkgs/python-shiboken/update b/srcpkgs/python-shiboken/update new file mode 100644 index 0000000000..f8273a389c --- /dev/null +++ b/srcpkgs/python-shiboken/update @@ -0,0 +1 @@ +pkgname=$_realname diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template index b662dbe876..b52ca1bcf5 100644 --- a/srcpkgs/python-smbc/template +++ b/srcpkgs/python-smbc/template @@ -12,7 +12,6 @@ short_desc="Python2 bindings for libsmbclient" homepage="https://pypi.python.org/pypi/pysmbc/" license="GPL-2" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname="pysmbc" distfiles="${PYPI_SITE}/p/pysmbc/pysmbc-${version}.tar.bz2" checksum=e12e397a4d23ddad8b7ef74abb9f8eef55fdf54d91f622bf5224a0a591b17854 diff --git a/srcpkgs/python-smbc/update b/srcpkgs/python-smbc/update new file mode 100644 index 0000000000..b1cf65c361 --- /dev/null +++ b/srcpkgs/python-smbc/update @@ -0,0 +1 @@ +pkgname="pysmbc" diff --git a/srcpkgs/python-sqlite/template b/srcpkgs/python-sqlite/template index 3ae3a6c0a7..bc8d4d762d 100644 --- a/srcpkgs/python-sqlite/template +++ b/srcpkgs/python-sqlite/template @@ -12,7 +12,6 @@ short_desc="Python2 DB-API 2.0 interface for SQLite databases" homepage="https://code.google.com/p/pysqlite/" license="MIT" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname="pysqlite" distfiles="https://pypi.python.org/packages/source/p/pysqlite/pysqlite-${version}.tar.gz" checksum=fe9c35216bf56c858b34c4b4c8be7e34566ddef29670e5a5b43f9cb8ecfbb28d diff --git a/srcpkgs/python-sqlite/update b/srcpkgs/python-sqlite/update new file mode 100644 index 0000000000..9fd0197445 --- /dev/null +++ b/srcpkgs/python-sqlite/update @@ -0,0 +1 @@ +pkgname="pysqlite" diff --git a/srcpkgs/python-urlgrabber/template b/srcpkgs/python-urlgrabber/template index 3b579abb2b..efb29e9de0 100644 --- a/srcpkgs/python-urlgrabber/template +++ b/srcpkgs/python-urlgrabber/template @@ -14,6 +14,5 @@ short_desc="A high-level cross-protocol url-grabber (Python2)" homepage="http://urlgrabber.baseurl.org/" license="LGPL-2.1" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname="urlgrabber" distfiles="http://urlgrabber.baseurl.org/download/urlgrabber-${version}.tar.gz" checksum=06b13ff8d527dba3aee04069681b2c09c03117592d5485a80ae4b807cdf33476 diff --git a/srcpkgs/python-urlgrabber/update b/srcpkgs/python-urlgrabber/update new file mode 100644 index 0000000000..1980c6fc88 --- /dev/null +++ b/srcpkgs/python-urlgrabber/update @@ -0,0 +1 @@ +pkgname="urlgrabber" diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template index 18a4d94926..0ec6f30fe1 100644 --- a/srcpkgs/python-xdg/template +++ b/srcpkgs/python-xdg/template @@ -15,7 +15,6 @@ short_desc="Python2 library to access freedesktop.org standards" maintainer="Juan RP <xtraeme@gmail.com>" license="LGPL-2.1" homepage="http://freedesktop.org/Software/pyxdg" -update_pkgname="pyxdg" distfiles="http://www.freedesktop.org/~takluyver/pyxdg-${version}.tar.gz" checksum=81e883e0b9517d624e8b0499eb267b82a815c0b7146d5269f364988ae031279d diff --git a/srcpkgs/python-xdg/update b/srcpkgs/python-xdg/update new file mode 100644 index 0000000000..3105fece79 --- /dev/null +++ b/srcpkgs/python-xdg/update @@ -0,0 +1 @@ +pkgname="pyxdg" diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template index fd1c1ba05a..9f58e01384 100644 --- a/srcpkgs/python-xlib/template +++ b/srcpkgs/python-xlib/template @@ -10,6 +10,5 @@ short_desc="A fully functional X client library for Python programs" maintainer="Enno Boland <eb@s01.de>" license="GPL" homepage="http://python-xlib.sourceforge.net/" -update_ignore="*rc* *pre*" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz" checksum=4771b0b6a605e0197ece5432fa601c61df724b32544239f463a867200f2160eb diff --git a/srcpkgs/python-xlib/update b/srcpkgs/python-xlib/update new file mode 100644 index 0000000000..7d559271c9 --- /dev/null +++ b/srcpkgs/python-xlib/update @@ -0,0 +1 @@ +ignore="*rc* *pre*" diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template index 6142f2848b..af5bc5511d 100644 --- a/srcpkgs/python-yaml/template +++ b/srcpkgs/python-yaml/template @@ -13,7 +13,6 @@ short_desc="YAML parser and emitter for Python2" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://pyyaml.org/wiki/PyYAML" license="MIT" -update_pkgname="PyYAML" distfiles="http://pyyaml.org/download/pyyaml/PyYAML-${version}.tar.gz" checksum=c36c938a872e5ff494938b33b14aaa156cb439ec67548fcab3535bb78b0846e8 diff --git a/srcpkgs/python-yaml/update b/srcpkgs/python-yaml/update new file mode 100644 index 0000000000..14681c82c9 --- /dev/null +++ b/srcpkgs/python-yaml/update @@ -0,0 +1 @@ +pkgname="PyYAML" diff --git a/srcpkgs/python-yenc/template b/srcpkgs/python-yenc/template index bb2d536b62..22422730c5 100644 --- a/srcpkgs/python-yenc/template +++ b/srcpkgs/python-yenc/template @@ -11,7 +11,6 @@ pycompile_module="yenc.py" short_desc="yEnc Module for Python2" maintainer="Dominik Honnef <dominik@honnef.co>" homepage="https://bitbucket.org/dual75/yenc" -update_pkgname="yenc" license="LGPL-2.1" distfiles="http://www.golug.it/pub/yenc/yenc-${version}.tar.gz" checksum=075f6c4e4f43b7c6dafac579eabb17287b62d80e9147cbea0b046bc3ee8edd2f diff --git a/srcpkgs/python-yenc/update b/srcpkgs/python-yenc/update new file mode 100644 index 0000000000..72bf9817e4 --- /dev/null +++ b/srcpkgs/python-yenc/update @@ -0,0 +1 @@ +pkgname="yenc" diff --git a/srcpkgs/python3.4-cairo/template b/srcpkgs/python3.4-cairo/template index 2cc9695924..64519ef311 100644 --- a/srcpkgs/python3.4-cairo/template +++ b/srcpkgs/python3.4-cairo/template @@ -12,7 +12,6 @@ short_desc="Python3.4 bindings for the cairo graphics library" homepage="http://cairographics.org/pycairo/" license="LGPL-3" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname=pycairo distfiles="http://cairographics.org/releases/pycairo-${version}.tar.bz2" checksum=9aa4078e7eb5be583aeabbe8d87172797717f95e8c4338f0d4a17b683a7253be diff --git a/srcpkgs/python3.4-cairo/update b/srcpkgs/python3.4-cairo/update new file mode 100644 index 0000000000..c909e11c36 --- /dev/null +++ b/srcpkgs/python3.4-cairo/update @@ -0,0 +1 @@ +pkgname=pycairo diff --git a/srcpkgs/python3.4-pyside/template b/srcpkgs/python3.4-pyside/template index 51fb6ab626..732bc05c86 100644 --- a/srcpkgs/python3.4-pyside/template +++ b/srcpkgs/python3.4-pyside/template @@ -12,7 +12,6 @@ short_desc="Qt bindings for Python3" maintainer="Enno Boland <eb@s01.de>" homepage="http://qt-project.org/wiki/PySide" license="LGPL" -update_pkgname="${_realname}-qt4.8+" distfiles="http://download.qt-project.org/official_releases/${_realname}/${_realname}-qt4.8+${version}.tar.bz2" checksum=a1a9df746378efe52211f1a229f77571d1306fb72830bbf73f0d512ed9856ae1 configure_args="-DUSE_PYTHON3=yes" diff --git a/srcpkgs/python3.4-pyside/update b/srcpkgs/python3.4-pyside/update new file mode 100644 index 0000000000..16cff1d644 --- /dev/null +++ b/srcpkgs/python3.4-pyside/update @@ -0,0 +1 @@ +pkgname="${_realname}-qt4.8+" diff --git a/srcpkgs/python3.4-shiboken/template b/srcpkgs/python3.4-shiboken/template index b5683a15d0..68a3bbaf75 100644 --- a/srcpkgs/python3.4-shiboken/template +++ b/srcpkgs/python3.4-shiboken/template @@ -11,7 +11,6 @@ short_desc="Support library for Python3 bindings" maintainer="Enno Boland <eb@s01.de>" homepage="http://www.pyside.org" license="LGPL" -update_pkgname=${_realname} distfiles="http://download.qt-project.org/official_releases/pyside/${_realname}-${version}.tar.bz2" checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4 wrksrc=${_realname}-${version} diff --git a/srcpkgs/python3.4-shiboken/update b/srcpkgs/python3.4-shiboken/update new file mode 100644 index 0000000000..24a0f2f005 --- /dev/null +++ b/srcpkgs/python3.4-shiboken/update @@ -0,0 +1 @@ +pkgname=${_realname} diff --git a/srcpkgs/python3.4/template b/srcpkgs/python3.4/template index 96b3a2736f..f607e3224c 100644 --- a/srcpkgs/python3.4/template +++ b/srcpkgs/python3.4/template @@ -7,9 +7,6 @@ short_desc="Interpreted, interactive, object-oriented programming language (${ve maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.python.org" license="PSF" -update_pkgname=Python -update_site="${homepage}/downloads/source/" -update_ignore="*rc*" distfiles="http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz" checksum=1c6d9682d145c056537e477bbfa060ce727f9edd38df1827e0f970dcf04b2def diff --git a/srcpkgs/python3.4/update b/srcpkgs/python3.4/update new file mode 100644 index 0000000000..1472228bc3 --- /dev/null +++ b/srcpkgs/python3.4/update @@ -0,0 +1,3 @@ +pkgname=Python +site="${homepage}/downloads/source/" +ignore="*rc*" diff --git a/srcpkgs/qjson/template b/srcpkgs/qjson/template index 7e38f7e5d9..bf0a7fe7ac 100644 --- a/srcpkgs/qjson/template +++ b/srcpkgs/qjson/template @@ -8,8 +8,6 @@ makedepends="qt-devel" short_desc="A QT-based library that maps JSON data to QVariant objects" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" -update_site="https://github.com/flavio/qjson/tags" -update_pattern='/archive/\K[\d\.]+(?=\.tar\.gz")' homepage="http://qjson.sourceforge.net" do_fetch() { diff --git a/srcpkgs/qjson/update b/srcpkgs/qjson/update new file mode 100644 index 0000000000..6525c819eb --- /dev/null +++ b/srcpkgs/qjson/update @@ -0,0 +1,2 @@ +site="https://github.com/flavio/qjson/tags" +pattern='/archive/\K[\d\.]+(?=\.tar\.gz")' diff --git a/srcpkgs/qv4l2/template b/srcpkgs/qv4l2/template index f446e7fbcf..8960f5724c 100644 --- a/srcpkgs/qv4l2/template +++ b/srcpkgs/qv4l2/template @@ -12,7 +12,6 @@ short_desc="QT v4l2 control panel application" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://freshmeat.net/projects/libv4l" license="GPL-2, LGPL-2.1" -update_pkgname=v4l-utils distfiles="http://linuxtv.org/downloads/v4l-utils/v4l-utils-${version}.tar.bz2" checksum=d3d6eb1f0204fb11f3d318bfca35d5f73cc077f88fac7665a47856a16496be7d diff --git a/srcpkgs/qv4l2/update b/srcpkgs/qv4l2/update new file mode 100644 index 0000000000..924a262877 --- /dev/null +++ b/srcpkgs/qv4l2/update @@ -0,0 +1 @@ +pkgname=v4l-utils diff --git a/srcpkgs/rage-player/template b/srcpkgs/rage-player/template index 06dbffbd88..69f7f7fe88 100644 --- a/srcpkgs/rage-player/template +++ b/srcpkgs/rage-player/template @@ -11,6 +11,5 @@ short_desc="Video and Audio player written with Enlightenment Foundation Librari maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-3" homepage="https://www.enlightenment.org/p.php?p=about/rage" -update_pkgname=rage distfiles="http://download.enlightenment.org/rel/apps/rage/rage-${version}.tar.gz" checksum=936b82261a9ec45008acf9d55d5ca111feec47348fb5353c5a47134133b00735 diff --git a/srcpkgs/rage-player/update b/srcpkgs/rage-player/update new file mode 100644 index 0000000000..043a14bc3f --- /dev/null +++ b/srcpkgs/rage-player/update @@ -0,0 +1 @@ +pkgname=rage diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template index f7b55488b1..3fdab1602d 100644 --- a/srcpkgs/ranger/template +++ b/srcpkgs/ranger/template @@ -12,6 +12,5 @@ short_desc="File manager with an ncurses frontend written in Python" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-3" homepage="http://ranger.nongnu.org" -update_site="${homepage}/download.html" distfiles="http://ranger.nongnu.org/${pkgname}-${version}.tar.gz" checksum=ccb230a5d2d71ca11612b5af1ca515f9d490b51b1546678828e306252677db5e diff --git a/srcpkgs/ranger/update b/srcpkgs/ranger/update new file mode 100644 index 0000000000..8ccb863442 --- /dev/null +++ b/srcpkgs/ranger/update @@ -0,0 +1 @@ +site="${homepage}/download.html" diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template index b97ae37902..7ea6b3b92a 100644 --- a/srcpkgs/redshift/template +++ b/srcpkgs/redshift/template @@ -9,7 +9,6 @@ makedepends="GConf-devel libXxf86vm-devel pygtk-devel python-xdg geoclue-devel>= short_desc="Adjusts the color temperature of your screen according to your surroundings" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-3" -update_pattern='Redshift \K[\d.]+' homepage="http://jonls.dk/redshift/" do_fetch() { diff --git a/srcpkgs/redshift/update b/srcpkgs/redshift/update new file mode 100644 index 0000000000..984f46ed2d --- /dev/null +++ b/srcpkgs/redshift/update @@ -0,0 +1 @@ +pattern='Redshift \K[\d.]+' diff --git a/srcpkgs/rsyslog/template b/srcpkgs/rsyslog/template index 7b73c39bfd..5afbb36551 100644 --- a/srcpkgs/rsyslog/template +++ b/srcpkgs/rsyslog/template @@ -16,7 +16,6 @@ short_desc="An Enhanced multi-threaded syslog daemon" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-3" homepage="http://www.rsyslog.com" -update_pattern='<b>\K[\d.]+(?=</b>)' distfiles="${homepage}/files/download/rsyslog/$pkgname-$version.tar.gz" checksum=759f836be460c794a7649f2b5b5ef8d423388ec599bf3b49f51fded3f8c02431 diff --git a/srcpkgs/rsyslog/update b/srcpkgs/rsyslog/update new file mode 100644 index 0000000000..5a1dd7d33a --- /dev/null +++ b/srcpkgs/rsyslog/update @@ -0,0 +1 @@ +pattern='<b>\K[\d.]+(?=</b>)' diff --git a/srcpkgs/run-mailcap/template b/srcpkgs/run-mailcap/template index 5bd6609eed..09e118d9c8 100644 --- a/srcpkgs/run-mailcap/template +++ b/srcpkgs/run-mailcap/template @@ -2,15 +2,13 @@ pkgname="run-mailcap" version="3.58" revision=1 -update_version="${version}ubuntu1" short_desc="Execute programs via entries in the mailcap file" maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>" license="Public Domain" homepage="http://packages.ubuntu.com/vivid/mime-support" -distfiles="${UBUNTU_SITE}/main/m/mime-support/mime-support_${update_version}.tar.gz" +distfiles="${UBUNTU_SITE}/main/m/mime-support/mime-support_${version}ubuntu1.tar.gz" checksum="359014c892432870e43b153287391d1212efd7b8ed8571508a65b6aa0488a17d" -wrksrc="mime-support-${update_version}" -update_pkgname="mime-support" +wrksrc="mime-support-${version}ubuntu1" noarch=1 depends="perl" diff --git a/srcpkgs/run-mailcap/update b/srcpkgs/run-mailcap/update new file mode 100644 index 0000000000..2e0c92d172 --- /dev/null +++ b/srcpkgs/run-mailcap/update @@ -0,0 +1,2 @@ +version="${version}ubuntu1" +pkgname="mime-support" diff --git a/srcpkgs/run-parts/template b/srcpkgs/run-parts/template index c84a9a1112..deb43b2cc0 100644 --- a/srcpkgs/run-parts/template +++ b/srcpkgs/run-parts/template @@ -9,7 +9,6 @@ short_desc="Run scripts or programs in a directory" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://packages.qa.debian.org/d/debianutils.html" license="GPL-2" -update_pkgname=debianutils distfiles="${DEBIAN_SITE}/main/d/debianutils/debianutils_${version}.tar.gz" checksum=0062d774306a6acc34d3b855a5c4eeb845653b0cd34dbb5c13aa00b4ecb8af22 diff --git a/srcpkgs/run-parts/update b/srcpkgs/run-parts/update new file mode 100644 index 0000000000..7347b13540 --- /dev/null +++ b/srcpkgs/run-parts/update @@ -0,0 +1 @@ +pkgname=debianutils diff --git a/srcpkgs/runit/template b/srcpkgs/runit/template index 14b4ced502..6c0fa4ee29 100644 --- a/srcpkgs/runit/template +++ b/srcpkgs/runit/template @@ -7,7 +7,6 @@ short_desc="A UNIX init scheme with service supervision" maintainer="Juan RP <xtraeme@gmail.com>" license="BSD" homepage="http://smarden.org/runit/" -update_site="${homepage}install.html" distfiles="http://smarden.org/runit/runit-$version.tar.gz" checksum=6fd0160cb0cf1207de4e66754b6d39750cff14bb0aa66ab49490992c0c47ba18 diff --git a/srcpkgs/runit/update b/srcpkgs/runit/update new file mode 100644 index 0000000000..20136ade0b --- /dev/null +++ b/srcpkgs/runit/update @@ -0,0 +1 @@ +site="${homepage}install.html" diff --git a/srcpkgs/rust/template b/srcpkgs/rust/template index 952b3964d4..2dd4129832 100644 --- a/srcpkgs/rust/template +++ b/srcpkgs/rust/template @@ -11,7 +11,6 @@ short_desc="A safe, concurrent, practical language" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.rust-lang.org/" license="MIT, Apache-2.0" -update_site="${homepage}install.html" distfiles="http://static.rust-lang.org/dist/rust-${version}.tar.gz" checksum=883e66b24d90d9957c5c538469fcde6f0668e5fb6448beecfc60884060e769b7 diff --git a/srcpkgs/rust/update b/srcpkgs/rust/update new file mode 100644 index 0000000000..20136ade0b --- /dev/null +++ b/srcpkgs/rust/update @@ -0,0 +1 @@ +site="${homepage}install.html" diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template index 0bbb8c08dc..cf7b099a38 100644 --- a/srcpkgs/s3cmd/template +++ b/srcpkgs/s3cmd/template @@ -11,7 +11,6 @@ short_desc="Command line tool for Amazon S3" maintainer="Eivind Uggedal <eivind@uggedal.com>" license="GPL-2" homepage="http://s3tools.org/s3cmd" -update_pattern='archive/v?\K[\d.]+(-rc\d)?(?=\.tar\.gz)' distfiles="https://github.com/s3tools/${pkgname}/archive/v${version}.tar.gz" checksum=bd909f6c14930bc70dadfbf0593e80b5ab49ff41c137bb7bda164130f776c361 diff --git a/srcpkgs/s3cmd/update b/srcpkgs/s3cmd/update new file mode 100644 index 0000000000..a36dd1db22 --- /dev/null +++ b/srcpkgs/s3cmd/update @@ -0,0 +1 @@ +pattern='archive/v?\K[\d.]+(-rc\d)?(?=\.tar\.gz)' diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template index 39398ef6cd..d99001257e 100644 --- a/srcpkgs/sabnzbd/template +++ b/srcpkgs/sabnzbd/template @@ -9,7 +9,6 @@ maintainer="Dominik Honnef <dominik@honnef.co>" # BSD, LGPL-2 and MIT. In combination, that makes this package GPL. license="GPL" homepage="http://sabnzbd.org/" -update_ignore="*RC*" short_desc="SABnzbd is an Open Source Binary Newsreader written in Python" distfiles="${SOURCEFORGE_SITE}/sabnzbdplus/SABnzbd-${version}-src.tar.gz" checksum=20b3a4613a0ecdede4fdfeb628ae806e458ac1a6fb684306328dd4ed1faf8742 diff --git a/srcpkgs/sabnzbd/update b/srcpkgs/sabnzbd/update new file mode 100644 index 0000000000..667700bc71 --- /dev/null +++ b/srcpkgs/sabnzbd/update @@ -0,0 +1 @@ +ignore="*RC*" diff --git a/srcpkgs/sane/template b/srcpkgs/sane/template index 4610fb9902..a32df754f2 100644 --- a/srcpkgs/sane/template +++ b/srcpkgs/sane/template @@ -92,7 +92,6 @@ short_desc="Scanner Access Now Easy" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.sane-project.org/" license="GPL-2" -update_pkgname=sane-backends distfiles="http://ftp.lfs-matrix.net/pub/blfs/conglomeration/sane-backends/sane-backends-${version}.tar.gz" checksum=27c7085a54f1505d8b551e6f1e69d30e1ee57328b18429bb2225dabf4c45462d diff --git a/srcpkgs/sane/update b/srcpkgs/sane/update new file mode 100644 index 0000000000..19b28f7165 --- /dev/null +++ b/srcpkgs/sane/update @@ -0,0 +1 @@ +pkgname=sane-backends diff --git a/srcpkgs/serf/template b/srcpkgs/serf/template index 740404def2..7d0d54c36e 100644 --- a/srcpkgs/serf/template +++ b/srcpkgs/serf/template @@ -8,7 +8,6 @@ short_desc="High-performance asynchronous HTTP client library" maintainer="Juan RP <xtraeme@gmail.com>" license="Apache-2.0" homepage="http://code.google.com/p/serf/" -update_site="http://serf.googlecode.com/svn/src_releases/" distfiles="http://serf.googlecode.com/svn/src_releases/${pkgname}-${version}.zip" checksum=d202c064e05c5483c4a81c6519a8a95137c65f10177b83cec9db885b88f4c690 diff --git a/srcpkgs/serf/update b/srcpkgs/serf/update new file mode 100644 index 0000000000..2aa9adad6d --- /dev/null +++ b/srcpkgs/serf/update @@ -0,0 +1 @@ +site="http://serf.googlecode.com/svn/src_releases/" diff --git a/srcpkgs/sg3_utils/template b/srcpkgs/sg3_utils/template index d5db04a4ab..c2bad1fc93 100644 --- a/srcpkgs/sg3_utils/template +++ b/srcpkgs/sg3_utils/template @@ -9,7 +9,6 @@ short_desc="Generic SCSI utilities" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://sg.danny.cz/sg/sg3_utils.html" license="BSD, GPL-2" -update_pattern=$pkgname'-\K[\d.]+(?=\.tgz)' distfiles="http://sg.danny.cz/sg/p/$pkgname-$version.tgz" checksum=44a9ecfd3af018fa9f3586067a8fa5f4874451c3d773d74436d262a7e530ee83 diff --git a/srcpkgs/sg3_utils/update b/srcpkgs/sg3_utils/update new file mode 100644 index 0000000000..7bf13c8064 --- /dev/null +++ b/srcpkgs/sg3_utils/update @@ -0,0 +1 @@ +pattern=$pkgname'-\K[\d.]+(?=\.tgz)' diff --git a/srcpkgs/signify/template b/srcpkgs/signify/template index 8977cafefb..6815171918 100644 --- a/srcpkgs/signify/template +++ b/srcpkgs/signify/template @@ -9,7 +9,6 @@ license="ISC" homepage="http://www.tedunangst.com/flak/post/signify" distfiles="${SOURCEFORGE_SITE}/slackdepot/${pkgname}/${pkgname}-portable-${version}.tar.bz2" checksum=11c0a1ac0ca8075d2f00036f8de53a213346c4b2ecf44dacedc60d160569f6b2 -update_pkgname="${pkgname}-portable" wrksrc="${pkgname}-portable-${version}" pre_build() { diff --git a/srcpkgs/signify/update b/srcpkgs/signify/update new file mode 100644 index 0000000000..97579dd59c --- /dev/null +++ b/srcpkgs/signify/update @@ -0,0 +1 @@ +pkgname="${pkgname}-portable" diff --git a/srcpkgs/silc/template b/srcpkgs/silc/template index 23378aa9ff..6f7212f473 100644 --- a/srcpkgs/silc/template +++ b/srcpkgs/silc/template @@ -10,7 +10,6 @@ short_desc="Secure Internet Live Conferencing server" maintainer="Ypnose <linuxienATlegtuxDOTorg>" license="GPL" homepage="http://www.silcnet.org/server.html" -update_pkgname=silc-server distfiles="${SOURCEFORGE_SITE}/silc/silc/server/sources/silc-server-$version.tar.bz2" checksum=b2fdfb9aca1c8886e7de9aa888f856247848aaf19b78b4fa64ca69c7210e76ce wrksrc="$pkgname-server-$version" diff --git a/srcpkgs/silc/update b/srcpkgs/silc/update new file mode 100644 index 0000000000..6a99e6f419 --- /dev/null +++ b/srcpkgs/silc/update @@ -0,0 +1 @@ +pkgname=silc-server diff --git a/srcpkgs/slurm/template b/srcpkgs/slurm/template index 1ae89a4883..f03ed307cf 100644 --- a/srcpkgs/slurm/template +++ b/srcpkgs/slurm/template @@ -8,7 +8,6 @@ short_desc="Yet another network load monitor" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2" homepage="https://github.com/mattthias/slurm" -update_pattern="upstream/\K[\d.]+\d" distfiles="https://github.com/mattthias/slurm/archive/upstream/${version}.tar.gz" checksum=8a28e11650928d87a907f9b154f6efd1ad5854cdc56a528da2e02e756e0aa58e diff --git a/srcpkgs/slurm/update b/srcpkgs/slurm/update new file mode 100644 index 0000000000..cea7df6b2e --- /dev/null +++ b/srcpkgs/slurm/update @@ -0,0 +1 @@ +pattern="upstream/\K[\d.]+\d" diff --git a/srcpkgs/snappy-player/template b/srcpkgs/snappy-player/template index c0dc320de7..b26a0d0801 100644 --- a/srcpkgs/snappy-player/template +++ b/srcpkgs/snappy-player/template @@ -10,6 +10,5 @@ short_desc="Powerful media player with a minimalistic interface" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="https://wiki.gnome.org/Apps/Snappy" -update_pkgname=snappy distfiles="${GNOME_SITE}/snappy/${version}/snappy-${version}.tar.xz" checksum=0d33a05c1ad3cc075b8b9bf38d45634ea5204159454597b0882dd6a8d9763f58 diff --git a/srcpkgs/snappy-player/update b/srcpkgs/snappy-player/update new file mode 100644 index 0000000000..2354037358 --- /dev/null +++ b/srcpkgs/snappy-player/update @@ -0,0 +1 @@ +pkgname=snappy diff --git a/srcpkgs/socklog/template b/srcpkgs/socklog/template index e1394989ac..ae693a9b78 100644 --- a/srcpkgs/socklog/template +++ b/srcpkgs/socklog/template @@ -7,7 +7,6 @@ short_desc="Small and secure syslogd replacement for use with runit" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="custom" homepage="http://smarden.org/socklog/" -update_site="http://smarden.org/socklog/install.html" distfiles="http://smarden.org/socklog/${pkgname}-${version}.tar.gz" checksum=aa869a787ee004da4e5509b5a0031bcc17a4ab4ac650c2ce8d4e488123acb455 diff --git a/srcpkgs/socklog/update b/srcpkgs/socklog/update new file mode 100644 index 0000000000..1e84f2f1e9 --- /dev/null +++ b/srcpkgs/socklog/update @@ -0,0 +1 @@ +site="http://smarden.org/socklog/install.html" diff --git a/srcpkgs/soundtouch/template b/srcpkgs/soundtouch/template index 0d534af641..1e0b054e2c 100644 --- a/srcpkgs/soundtouch/template +++ b/srcpkgs/soundtouch/template @@ -9,7 +9,6 @@ short_desc="SoundTouch Audio Processing Library" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.surina.net/soundtouch" license="LGPL-2.1" -update_site="${homepage}/sourcecode.html" distfiles="http://www.surina.net/soundtouch/soundtouch-${version}.tar.gz" checksum=3d4161d74ca25c5a98c69dbb8ea10fd2be409ba1a3a0bf81db407c4c261f166b diff --git a/srcpkgs/soundtouch/update b/srcpkgs/soundtouch/update new file mode 100644 index 0000000000..7da1ed6698 --- /dev/null +++ b/srcpkgs/soundtouch/update @@ -0,0 +1 @@ +site="${homepage}/sourcecode.html" diff --git a/srcpkgs/sox/template b/srcpkgs/sox/template index 262dfdcccf..db4edd754a 100644 --- a/srcpkgs/sox/template +++ b/srcpkgs/sox/template @@ -10,7 +10,6 @@ short_desc="Sound eXchange, the Swiss Army knife of audio manipulation" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-3" homepage="http://sox.sourceforge.net/" -update_ignore="121* *rc*" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.bz2" checksum=2cb40527f6957f2de27aea39fb5da3dda4ddf4aaef22812d643f40623dec0e40 diff --git a/srcpkgs/sox/update b/srcpkgs/sox/update new file mode 100644 index 0000000000..d957fd5f55 --- /dev/null +++ b/srcpkgs/sox/update @@ -0,0 +1 @@ +ignore="121* *rc*" diff --git a/srcpkgs/spawn-fcgi/template b/srcpkgs/spawn-fcgi/template index 6dcf5b6a6c..13c2f8995b 100644 --- a/srcpkgs/spawn-fcgi/template +++ b/srcpkgs/spawn-fcgi/template @@ -7,7 +7,6 @@ short_desc="Spawn FastCGI applications" maintainer="Eivind Uggedal <eivind@uggedal.com>" license="BSD" homepage="http://redmine.lighttpd.net/projects/spawn-fcgi/" -update_site="$homepage/news" distfiles="http://www.lighttpd.net/download/${pkgname}-${version}.tar.bz2" checksum=a3cfc7c9581b6ddc31084b379c9160323fa345d357ace6cd2d3d3af3593e2873 diff --git a/srcpkgs/spawn-fcgi/update b/srcpkgs/spawn-fcgi/update new file mode 100644 index 0000000000..c468002ece --- /dev/null +++ b/srcpkgs/spawn-fcgi/update @@ -0,0 +1 @@ +site="$homepage/news" diff --git a/srcpkgs/sphinxbase/template b/srcpkgs/sphinxbase/template index a7bc7fe6eb..b2ae510a19 100644 --- a/srcpkgs/sphinxbase/template +++ b/srcpkgs/sphinxbase/template @@ -10,7 +10,6 @@ short_desc="CMU Sphinx common libraries and utilities" maintainer="Martin Riese <grauehaare@gmx.de>" license="GPL-2" homepage="http://cmusphinx.sourceforge.net" -update_ignore="*alpha*" distfiles="${SOURCEFORGE_SITE}/cmusphinx/${pkgname}/${version}/${pkgname}-${version}.tar.gz" checksum="55708944872bab1015b8ae07b379bf463764f469163a8fd114cbb16c5e486ca8" diff --git a/srcpkgs/sphinxbase/update b/srcpkgs/sphinxbase/update new file mode 100644 index 0000000000..70f8b7290d --- /dev/null +++ b/srcpkgs/sphinxbase/update @@ -0,0 +1 @@ +ignore="*alpha*" diff --git a/srcpkgs/sqlite/template b/srcpkgs/sqlite/template index 017d8b8622..01078872b8 100644 --- a/srcpkgs/sqlite/template +++ b/srcpkgs/sqlite/template @@ -10,7 +10,6 @@ makedepends="readline-devel>=6.3" short_desc="SQL Database Engine in a C Library" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.sqlite.org" -update_pattern='>Version \K[\d.]+' license="Public Domain" distfiles="http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz" checksum=86370f139405fdfe03334fd618171a74e50f589f17ccbe5933361ed1f58359ec diff --git a/srcpkgs/sqlite/update b/srcpkgs/sqlite/update new file mode 100644 index 0000000000..425926ce0d --- /dev/null +++ b/srcpkgs/sqlite/update @@ -0,0 +1 @@ +pattern='>Version \K[\d.]+' diff --git a/srcpkgs/squashfs-tools/template b/srcpkgs/squashfs-tools/template index 9e87b905c0..127216f4c3 100644 --- a/srcpkgs/squashfs-tools/template +++ b/srcpkgs/squashfs-tools/template @@ -6,7 +6,6 @@ wrksrc="squashfs${version}" makedepends="zlib-devel lzo-devel liblzma-devel" license="GPL" homepage="http://squashfs.sf.net/" -update_pkgname="squashfs" short_desc="Tool to create and append to squashfs filesystems" maintainer="Juan RP <xtraeme@gmail.com>" distfiles="${SOURCEFORGE_SITE}/squashfs/squashfs${version}.tar.gz" diff --git a/srcpkgs/squashfs-tools/update b/srcpkgs/squashfs-tools/update new file mode 100644 index 0000000000..3cc708fcd9 --- /dev/null +++ b/srcpkgs/squashfs-tools/update @@ -0,0 +1 @@ +pkgname="squashfs" diff --git a/srcpkgs/stlarch-font/template b/srcpkgs/stlarch-font/template index 10925a7d78..92517e3eed 100644 --- a/srcpkgs/stlarch-font/template +++ b/srcpkgs/stlarch-font/template @@ -10,7 +10,6 @@ short_desc="Font with many icons" maintainer="Ypnose <linuxienATlegtuxDOTorg>" license="GPL2" homepage="http://sourceforge.net/projects/stlarchfont/" -update_pkgname="${pkgname//-/_}" distfiles="${SOURCEFORGE_SITE}"/stlarchfont/${pkgname//-/_}-${version}.tar.gz checksum=bce5386cdc5efc1e3b5af3e26768c09a303df9fc43ed039eb82ebe8c7da803c3 wrksrc=${pkgname//-/_}-${version} diff --git a/srcpkgs/stlarch-font/update b/srcpkgs/stlarch-font/update new file mode 100644 index 0000000000..3683d4fa5f --- /dev/null +++ b/srcpkgs/stlarch-font/update @@ -0,0 +1 @@ +pkgname="${pkgname//-/_}" diff --git a/srcpkgs/stunnel/template b/srcpkgs/stunnel/template index cbb5d82796..d87fe0a66d 100644 --- a/srcpkgs/stunnel/template +++ b/srcpkgs/stunnel/template @@ -9,8 +9,6 @@ short_desc="SSL encryption wrapper" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2" homepage="https://www.stunnel.org/" -update_site="https://www.stunnel.org/downloads.html" -update_ignore="*b*" distfiles="https://www.stunnel.org/downloads/$pkgname-$version.tar.gz" checksum=87b34a74061861d1edd2ab238c73eb989b3d0a17e44574b7b6ead1a16aae38c8 diff --git a/srcpkgs/stunnel/update b/srcpkgs/stunnel/update new file mode 100644 index 0000000000..bada6bf19d --- /dev/null +++ b/srcpkgs/stunnel/update @@ -0,0 +1,2 @@ +site="https://www.stunnel.org/downloads.html" +ignore="*b*" diff --git a/srcpkgs/swi-prolog/template b/srcpkgs/swi-prolog/template index 3084700d55..a845009de0 100644 --- a/srcpkgs/swi-prolog/template +++ b/srcpkgs/swi-prolog/template @@ -11,8 +11,6 @@ short_desc="A comprehensive free Prolog environment" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="LGPL-2.1" homepage="http://www.swi-prolog.org/" -update_site="http://www.swi-prolog.org/download/stable" -update_pattern='pl-\K[\d.]+\d' distfiles="http://www.swi-prolog.org/download/stable/src/pl-${version}.tar.gz" checksum=9f80bb274e2f31fd68b0acbe35982c012d5f8311dbe44ec1d8d04351a776996d nocross=yes diff --git a/srcpkgs/swi-prolog/update b/srcpkgs/swi-prolog/update new file mode 100644 index 0000000000..bef88c753f --- /dev/null +++ b/srcpkgs/swi-prolog/update @@ -0,0 +1,2 @@ +site="http://www.swi-prolog.org/download/stable" +pattern='pl-\K[\d.]+\d' diff --git a/srcpkgs/sysstat/template b/srcpkgs/sysstat/template index a31f9b9e38..eec7a4ba68 100644 --- a/srcpkgs/sysstat/template +++ b/srcpkgs/sysstat/template @@ -11,7 +11,6 @@ short_desc="A collection of performance monitoring tools" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2" homepage="http://pagesperso-orange.fr/sebastien.godard/" -update_site="http://sebastien.godard.pagesperso-orange.fr/download.html" distfiles="http://pagesperso-orange.fr/sebastien.godard/${pkgname}-${version}.tar.gz" checksum=00c6e91a7a2796a46cde095a9ac943bd35d7247fab23105b73a8a3f4f39fa937 diff --git a/srcpkgs/sysstat/update b/srcpkgs/sysstat/update new file mode 100644 index 0000000000..c1fb37efbc --- /dev/null +++ b/srcpkgs/sysstat/update @@ -0,0 +1 @@ +site="http://sebastien.godard.pagesperso-orange.fr/download.html" diff --git a/srcpkgs/task/template b/srcpkgs/task/template index 1963551eee..3f83ece91a 100644 --- a/srcpkgs/task/template +++ b/srcpkgs/task/template @@ -8,7 +8,6 @@ build_style="cmake" maintainer="Philipp Hirsch <itself@hanspolo.net>" license="MIT" homepage="http://taskwarrior.org/projects/taskwarrior" -update_ignore="*beta*" distfiles="http://www.taskwarrior.org/download/${pkgname}-${version}.tar.gz" checksum=6fa595f5b0fdf6ee8031da39e8d009771bda135f265d5f7b59df8046ffd9119e short_desc="a command-line todo list manager" diff --git a/srcpkgs/task/update b/srcpkgs/task/update new file mode 100644 index 0000000000..125db71da8 --- /dev/null +++ b/srcpkgs/task/update @@ -0,0 +1 @@ +ignore="*beta*" diff --git a/srcpkgs/teeworlds/template b/srcpkgs/teeworlds/template index 78f607a2ad..462175a599 100644 --- a/srcpkgs/teeworlds/template +++ b/srcpkgs/teeworlds/template @@ -10,7 +10,6 @@ short_desc="A retro multiplayer shooter" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="custom" homepage="https://www.teeworlds.com" -update_site="https://www.teeworlds.com/?page=downloads" distfiles="https://downloads.teeworlds.com/${pkgname}-${version}-src.tar.gz" checksum=490ee7c372898761c609af8d7b0c6bd55942c6c6fcd7f361eefa00abfc70077b diff --git a/srcpkgs/teeworlds/update b/srcpkgs/teeworlds/update new file mode 100644 index 0000000000..f0252caae0 --- /dev/null +++ b/srcpkgs/teeworlds/update @@ -0,0 +1 @@ +site="https://www.teeworlds.com/?page=downloads" diff --git a/srcpkgs/termsyn-font/template b/srcpkgs/termsyn-font/template index a7024c3687..ed2f67c439 100644 --- a/srcpkgs/termsyn-font/template +++ b/srcpkgs/termsyn-font/template @@ -10,7 +10,6 @@ short_desc="Monospaced font based on terminus and tamsyn" maintainer="Ypnose <linuxienATlegtuxDOTorg>" license="GPL2" homepage="http://sourceforge.net/projects/termsyn/" -update_pkgname=termsyn distfiles="${SOURCEFORGE_SITE}"/termsyn/${pkgname%-*}-${version}.tar.gz checksum=c6de5933bef537ca6f008fed2c787468dca3da4849e4dbdebc80fe6a07ab7a97 wrksrc=${pkgname%-*}-${version} diff --git a/srcpkgs/termsyn-font/update b/srcpkgs/termsyn-font/update new file mode 100644 index 0000000000..37ed422907 --- /dev/null +++ b/srcpkgs/termsyn-font/update @@ -0,0 +1 @@ +pkgname=termsyn diff --git a/srcpkgs/testdisk/template b/srcpkgs/testdisk/template index c5ff0d21fd..8ce8c93ef2 100644 --- a/srcpkgs/testdisk/template +++ b/srcpkgs/testdisk/template @@ -11,7 +11,5 @@ short_desc="Powerful free data recovery software" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://www.cgsecurity.org/" -update_site="http://www.cgsecurity.org/wiki/TestDisk_Download" -update_pattern=$pkgname'-\K[\d.]+(?=\.tar\.bz2)' distfiles="http://www.cgsecurity.org/$pkgname-$version.tar.bz2" checksum=a597c3ebc375acdf0ff60f44ed8935a301132aae78ec00f64f091637d055326c diff --git a/srcpkgs/testdisk/update b/srcpkgs/testdisk/update new file mode 100644 index 0000000000..f8ad8298f0 --- /dev/null +++ b/srcpkgs/testdisk/update @@ -0,0 +1,2 @@ +site="http://www.cgsecurity.org/wiki/TestDisk_Download" +pattern=$pkgname'-\K[\d.]+(?=\.tar\.bz2)' diff --git a/srcpkgs/thunderbird/template b/srcpkgs/thunderbird/template index 09664af82a..47000c25f3 100644 --- a/srcpkgs/thunderbird/template +++ b/srcpkgs/thunderbird/template @@ -18,8 +18,6 @@ makedepends="python-devel cairo-devel libjpeg-turbo-devel pixman-devel alsa-lib-devel wireless_tools-devel libXScrnSaver-devel libSM-devel libXt-devel pulseaudio-devel" depends="desktop-file-utils hicolor-icon-theme" -update_site="${MOZILLA_SITE}/${pkgname}/releases" -update_pattern="\">\K[0-9.]+(?=/</a>)" do_build() { cp -f ${FILESDIR}/mozconfig .mozconfig diff --git a/srcpkgs/thunderbird/update b/srcpkgs/thunderbird/update new file mode 100644 index 0000000000..3a7767f493 --- /dev/null +++ b/srcpkgs/thunderbird/update @@ -0,0 +1,2 @@ +site="${MOZILLA_SITE}/${pkgname}/releases" +pattern="\">\K[0-9.]+(?=/</a>)" diff --git a/srcpkgs/tinc/template b/srcpkgs/tinc/template index 8bdc7854e2..3acf108754 100644 --- a/srcpkgs/tinc/template +++ b/srcpkgs/tinc/template @@ -9,7 +9,6 @@ short_desc="VPN (Virtual Private Network) daemon" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://www.tinc-vpn.org" -update_ignore="*pre*" distfiles="${homepage}/packages/${pkgname}-${version}.tar.gz" checksum=c5c1c554e594d77365b63222ef15f4460c0c202f9163a89a087333a779f4f133 diff --git a/srcpkgs/tinc/update b/srcpkgs/tinc/update new file mode 100644 index 0000000000..8758aff9cb --- /dev/null +++ b/srcpkgs/tinc/update @@ -0,0 +1 @@ +ignore="*pre*" diff --git a/srcpkgs/tp_smapi-dkms/template b/srcpkgs/tp_smapi-dkms/template index 0f327f2793..0ee5f06cde 100644 --- a/srcpkgs/tp_smapi-dkms/template +++ b/srcpkgs/tp_smapi-dkms/template @@ -9,7 +9,6 @@ maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2" homepage="http://www.thinkwiki.org/wiki/Tp_smapi" distfiles="https://github.com/x539/tp_smapi/archive/master.tar.gz" -update_pattern='tp-smapi/\K[\d.]+' checksum=7e4519e4f3acb42d84f9cca1cbb070b4c69ef150277fb6511d2124f4033380ba triggers="dkms" diff --git a/srcpkgs/tp_smapi-dkms/update b/srcpkgs/tp_smapi-dkms/update new file mode 100644 index 0000000000..db5dd385ec --- /dev/null +++ b/srcpkgs/tp_smapi-dkms/update @@ -0,0 +1 @@ +pattern='tp-smapi/\K[\d.]+' diff --git a/srcpkgs/trace-cmd/template b/srcpkgs/trace-cmd/template index 78d9e68d0d..5041aef8ce 100644 --- a/srcpkgs/trace-cmd/template +++ b/srcpkgs/trace-cmd/template @@ -11,7 +11,6 @@ short_desc="Tools to use Ftrace Linux kernel internal tracer" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2, LGPL-2.1" homepage="http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git/" -update_pattern='trace-cmd-v\K[\d.]+' do_fetch() { git clone -b ${pkgname}-v${version} git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git ${pkgname}-${version} diff --git a/srcpkgs/trace-cmd/update b/srcpkgs/trace-cmd/update new file mode 100644 index 0000000000..c4ecedf82c --- /dev/null +++ b/srcpkgs/trace-cmd/update @@ -0,0 +1 @@ +pattern='trace-cmd-v\K[\d.]+' diff --git a/srcpkgs/trn/template b/srcpkgs/trn/template index 3b2cd7862d..d6d36a196f 100644 --- a/srcpkgs/trn/template +++ b/srcpkgs/trn/template @@ -11,7 +11,6 @@ short_desc="Text-based threaded Usenet newsreader" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="custom" homepage="http://trn.sourceforge.net/" -update_pattern='trn-\S*?(?=.tar.gz)' distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}4/${wrksrc}.tar.gz" checksum=9ab0430244903ad86ed74fcc2fdc39dc043d23968888e071313050a967b8a6ff diff --git a/srcpkgs/trn/update b/srcpkgs/trn/update new file mode 100644 index 0000000000..941aebdd60 --- /dev/null +++ b/srcpkgs/trn/update @@ -0,0 +1 @@ +pattern='trn-\S*?(?=.tar.gz)' diff --git a/srcpkgs/uboot-mkimage/template b/srcpkgs/uboot-mkimage/template index ba35419a9e..76babbf794 100644 --- a/srcpkgs/uboot-mkimage/template +++ b/srcpkgs/uboot-mkimage/template @@ -7,7 +7,6 @@ short_desc="The U-Boot mkimage utility" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://www.denx.de/wiki/U-Boot/WebHome" -update_pkgname=u-boot distfiles="http://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2" checksum=cdaf8c81583abfa2e73da46cfcf87b0cbd9741d9aa766f3b905376e3652d543d diff --git a/srcpkgs/uboot-mkimage/update b/srcpkgs/uboot-mkimage/update new file mode 100644 index 0000000000..a4f0ca17b6 --- /dev/null +++ b/srcpkgs/uboot-mkimage/update @@ -0,0 +1 @@ +pkgname=u-boot diff --git a/srcpkgs/ucspi-tcp/template b/srcpkgs/ucspi-tcp/template index 0f01f27f11..1153b5152f 100644 --- a/srcpkgs/ucspi-tcp/template +++ b/srcpkgs/ucspi-tcp/template @@ -8,7 +8,6 @@ maintainer="Nikolay Hristov <geroy@horizon9.org>" license="public domain" build_style=gnu-makefile homepage="http://cr.yp.to/ucspi-tcp.html" -update_site="http://cr.yp.to/ucspi-tcp/install.html" distfiles="http://cr.yp.to/ucspi-tcp/ucspi-tcp-${version}.tar.gz" checksum=4a0615cab74886f5b4f7e8fd32933a07b955536a3476d74ea087a3ea66a23e9c diff --git a/srcpkgs/ucspi-tcp/update b/srcpkgs/ucspi-tcp/update new file mode 100644 index 0000000000..cad546a1c3 --- /dev/null +++ b/srcpkgs/ucspi-tcp/update @@ -0,0 +1 @@ +site="http://cr.yp.to/ucspi-tcp/install.html" diff --git a/srcpkgs/udisks2/template b/srcpkgs/udisks2/template index fbbd67d672..93fcc0ca9b 100644 --- a/srcpkgs/udisks2/template +++ b/srcpkgs/udisks2/template @@ -15,7 +15,6 @@ short_desc="Disk Management Service, version 2" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.freedesktop.org/wiki/Software/udisks" license="GPL-2" -update_pkgname=udisks distfiles="http://udisks.freedesktop.org/releases/udisks-${version}.tar.bz2" checksum=a4e148dd3a4a209160452a12cfe770382836027002f6c84f2e6c17eb5be519bb diff --git a/srcpkgs/udisks2/update b/srcpkgs/udisks2/update new file mode 100644 index 0000000000..6e529b436c --- /dev/null +++ b/srcpkgs/udisks2/update @@ -0,0 +1 @@ +pkgname=udisks diff --git a/srcpkgs/unbound/template b/srcpkgs/unbound/template index e0aa0ff46b..77a47c518f 100644 --- a/srcpkgs/unbound/template +++ b/srcpkgs/unbound/template @@ -17,7 +17,6 @@ maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="BSD" homepage="http://unbound.net/" distfiles="http://unbound.net/downloads/${pkgname}-${version}.tar.gz" -update_ignore="*rc*" checksum=0ff82709fb2bd7ecbde8dbdcf60fa417d2b43379570a3d460193a76a169900ec post_install() { diff --git a/srcpkgs/unbound/update b/srcpkgs/unbound/update new file mode 100644 index 0000000000..e299d00ea6 --- /dev/null +++ b/srcpkgs/unbound/update @@ -0,0 +1 @@ +ignore="*rc*" diff --git a/srcpkgs/unicc/template b/srcpkgs/unicc/template index 83c35aea13..80c7dac808 100644 --- a/srcpkgs/unicc/template +++ b/srcpkgs/unicc/template @@ -10,6 +10,5 @@ short_desc="The Universal Compiler-Compiler" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.phorward-software.com" license="BSD" -update_site="${homepage}/products/unicc-lalr1-parser-generator/download_download.html" distfiles="${homepage}/products/${pkgname}/${pkgname}-${version}-source.tar.gz" checksum=1a9166e8b78b5e6ee7764fd878b2d8c8e4314683358192942149641b030b0d97 diff --git a/srcpkgs/unicc/update b/srcpkgs/unicc/update new file mode 100644 index 0000000000..1ca2c940a6 --- /dev/null +++ b/srcpkgs/unicc/update @@ -0,0 +1 @@ +site="${homepage}/products/unicc-lalr1-parser-generator/download_download.html" diff --git a/srcpkgs/unixodbc/template b/srcpkgs/unixodbc/template index e6fa294f33..aa1363a909 100644 --- a/srcpkgs/unixodbc/template +++ b/srcpkgs/unixodbc/template @@ -10,7 +10,6 @@ short_desc="Basic ODBC tools" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2, LGPL-2.1" homepage="http://www.unixodbc.org" -update_site="http://www.unixodbc.org/download.html" distfiles="http://www.unixodbc.org/unixODBC-${version}.tar.gz" checksum=9c3459742f25df5aa3c10a61429bde51a6d4f11552c03095f1d33d7eb02b5c9a diff --git a/srcpkgs/unixodbc/update b/srcpkgs/unixodbc/update new file mode 100644 index 0000000000..a424f5b506 --- /dev/null +++ b/srcpkgs/unixodbc/update @@ -0,0 +1 @@ +site="http://www.unixodbc.org/download.html" diff --git a/srcpkgs/unrar/template b/srcpkgs/unrar/template index 0861a366aa..fe7b7fbfb5 100644 --- a/srcpkgs/unrar/template +++ b/srcpkgs/unrar/template @@ -5,8 +5,6 @@ revision=1 wrksrc=unrar repository="nonfree" homepage="http://www.rarlab.com/rar" -update_pkgname=unrarsrc -update_site="http://www.rarlab.com/rar_add.htm" distfiles="${homepage}/unrarsrc-${version}.tar.gz" short_desc="Unarchiver for .rar files (non-free version)" maintainer="Juan RP <xtraeme@gmail.com>" diff --git a/srcpkgs/unrar/update b/srcpkgs/unrar/update new file mode 100644 index 0000000000..2e71176990 --- /dev/null +++ b/srcpkgs/unrar/update @@ -0,0 +1,2 @@ +pkgname=unrarsrc +site="http://www.rarlab.com/rar_add.htm" diff --git a/srcpkgs/upx/template b/srcpkgs/upx/template index bd753c476b..82e0bdd352 100644 --- a/srcpkgs/upx/template +++ b/srcpkgs/upx/template @@ -11,7 +11,6 @@ wrksrc="upx-${version}-src" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://upx.sourceforge.net/" license="GPL-2" -update_pattern='[\d.]+(?=-src\.tar)' distfiles="http://upx.sourceforge.net/download/upx-${version}-src.tar.bz2" checksum=527ce757429841f51675352b1f9f6fc8ad97b18002080d7bf8672c466d8c6a3c diff --git a/srcpkgs/upx/update b/srcpkgs/upx/update new file mode 100644 index 0000000000..e046ce1fa1 --- /dev/null +++ b/srcpkgs/upx/update @@ -0,0 +1 @@ +pattern='[\d.]+(?=-src\.tar)' diff --git a/srcpkgs/usbmuxd/template b/srcpkgs/usbmuxd/template index e04466bd12..adbd211c2c 100644 --- a/srcpkgs/usbmuxd/template +++ b/srcpkgs/usbmuxd/template @@ -14,7 +14,6 @@ short_desc="USB Multiplex Daemon" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2,GPL-3" homepage="https://marcan.st/blog/iphonelinux/usbmuxd/" -update_site="http://cgit.sukimashita.com/usbmuxd.git/" distfiles="http://www.libimobiledevice.org/downloads/${pkgname}-${version}.tar.bz2" checksum=3e8948b4fe4250ee5c4bd41ccd1b83c09b8a6f5518a7d131a66fd38bd461b42d diff --git a/srcpkgs/usbmuxd/update b/srcpkgs/usbmuxd/update new file mode 100644 index 0000000000..6e425d5cda --- /dev/null +++ b/srcpkgs/usbmuxd/update @@ -0,0 +1 @@ +site="http://cgit.sukimashita.com/usbmuxd.git/" diff --git a/srcpkgs/vbindiff/template b/srcpkgs/vbindiff/template index fe13759e26..52a511f125 100644 --- a/srcpkgs/vbindiff/template +++ b/srcpkgs/vbindiff/template @@ -8,6 +8,5 @@ short_desc="Visual Binary Diff" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2" homepage="http://www.cjmweb.net/vbindiff/" -update_pattern='vbindiff-\K.*(?=.tar)' distfiles="${homepage}/${pkgname}-${version}.tar.gz" checksum=7d5d5a87fde953dc2089746f6f6ab811d60e127b01074c97611898fb1ef1983d diff --git a/srcpkgs/vbindiff/update b/srcpkgs/vbindiff/update new file mode 100644 index 0000000000..0916df2df1 --- /dev/null +++ b/srcpkgs/vbindiff/update @@ -0,0 +1 @@ +pattern='vbindiff-\K.*(?=.tar)' diff --git a/srcpkgs/vicious/template b/srcpkgs/vicious/template index bb62faf4ed..57bbd84ed5 100644 --- a/srcpkgs/vicious/template +++ b/srcpkgs/vicious/template @@ -9,7 +9,6 @@ maintainer="Steven R <dev@styez.com>" short_desc="Modular widget library for window managers" homepage="http://git.sysphere.org/vicious/about/" license="GPL-2" -update_site="http://git.sysphere.org/vicious/" distfiles="http://git.sysphere.org/vicious/snapshot/vicious-${version}.tar.xz" checksum="97ffb824af89f2d205b0f0909601a32d761c0c02353b59b4314fd2cc47b2a387" diff --git a/srcpkgs/vicious/update b/srcpkgs/vicious/update new file mode 100644 index 0000000000..32227d1ed5 --- /dev/null +++ b/srcpkgs/vicious/update @@ -0,0 +1 @@ +site="http://git.sysphere.org/vicious/" diff --git a/srcpkgs/vifm/template b/srcpkgs/vifm/template index 60823550d1..8fb5442404 100644 --- a/srcpkgs/vifm/template +++ b/srcpkgs/vifm/template @@ -11,7 +11,6 @@ short_desc="Ncurses-based file manager with vi-like keybindings" maintainer="Alessio Sergi <al3hex@gmail.com>" license="GPL-2" homepage="http://vifm.info/" -update_ignore="*win32" distfiles="${SOURCEFORGE_SITE}/vifm/vifm-${version}.tar.bz2" checksum=5dfbb26c2038a58dcff12026dab736e29d547b4aa3ff5912e4d844064c9e7603 diff --git a/srcpkgs/vifm/update b/srcpkgs/vifm/update new file mode 100644 index 0000000000..822878de85 --- /dev/null +++ b/srcpkgs/vifm/update @@ -0,0 +1 @@ +ignore="*win32" diff --git a/srcpkgs/vim-gnupg/template b/srcpkgs/vim-gnupg/template index 2a181ac27a..1c8f81eba3 100644 --- a/srcpkgs/vim-gnupg/template +++ b/srcpkgs/vim-gnupg/template @@ -9,7 +9,6 @@ short_desc="Plugin for transparent editing of gpg encrypted files" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-2" homepage="http://www.vim.org/scripts/script.php?script_id=3645" -update_pattern='<b>\K[\d.]+(?=</b>)' distfiles="http://www.vim.org/scripts/download_script.php?src_id=18070>gnupg.vim" checksum=e54935e321941fcb18b98385be48c610f6978d88f616253a12d0e339fb00b5f5 diff --git a/srcpkgs/vim-gnupg/update b/srcpkgs/vim-gnupg/update new file mode 100644 index 0000000000..5a1dd7d33a --- /dev/null +++ b/srcpkgs/vim-gnupg/update @@ -0,0 +1 @@ +pattern='<b>\K[\d.]+(?=</b>)' diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template index 4ba66108eb..b35972ce8a 100644 --- a/srcpkgs/vim/template +++ b/srcpkgs/vim/template @@ -11,7 +11,6 @@ depends="vim-common>=$version" short_desc="Vim editor (vi clone)" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.vim.org" -update_pattern='^[\d.]+' license="GPL-2" subpackages="vim-common vim-x11 gvim" diff --git a/srcpkgs/vim/update b/srcpkgs/vim/update new file mode 100644 index 0000000000..92bdaac413 --- /dev/null +++ b/srcpkgs/vim/update @@ -0,0 +1 @@ +pattern='^[\d.]+' diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template index b6b77ccb08..b009409d5d 100644 --- a/srcpkgs/virtualbox-ose/template +++ b/srcpkgs/virtualbox-ose/template @@ -8,8 +8,6 @@ short_desc="General-purpose full virtualizer for x86 hardware" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://virtualbox.org" license="GPL-2, MPL-1.1, CDDL" -update_pkgname=VirtualBox -update_site="${homepage}/wiki/Downloads" distfiles="http://download.virtualbox.org/virtualbox/$version/VirtualBox-$version.tar.bz2" checksum=1484f8e9993ec4fe3892c5165db84d238713d2506e147ed8236541ece642e965 diff --git a/srcpkgs/virtualbox-ose/update b/srcpkgs/virtualbox-ose/update new file mode 100644 index 0000000000..55c020823e --- /dev/null +++ b/srcpkgs/virtualbox-ose/update @@ -0,0 +1,2 @@ +pkgname=VirtualBox +site="${homepage}/wiki/Downloads" diff --git a/srcpkgs/virtuoso/template b/srcpkgs/virtuoso/template index b9d33e7327..ebd8e4b62e 100644 --- a/srcpkgs/virtuoso/template +++ b/srcpkgs/virtuoso/template @@ -10,7 +10,6 @@ short_desc="A scalable cross-platform server of virtuoso" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://virtuoso.openlinksw.com/wiki/main/Main/" -update_pkgname="${pkgname}-opensource" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-opensource-${version}.tar.gz" checksum=08d05c6165117de0370e81aa89ddab618e645b5110be301f72e6ffea7044ca50 diff --git a/srcpkgs/virtuoso/update b/srcpkgs/virtuoso/update new file mode 100644 index 0000000000..d967cd39c1 --- /dev/null +++ b/srcpkgs/virtuoso/update @@ -0,0 +1 @@ +pkgname="${pkgname}-opensource" diff --git a/srcpkgs/vte290/template b/srcpkgs/vte290/template index f1fdfa972d..312bac0b51 100644 --- a/srcpkgs/vte290/template +++ b/srcpkgs/vte290/template @@ -12,8 +12,6 @@ short_desc="Terminal widget with improved accessibility and I18N support" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.gnome.org" license="LGPL-2.1" -update_pkgname=vte -update_site="https://git.gnome.org/browse/vte/" distfiles="${GNOME_SITE}/vte/${version%.*}/vte-${version}.tar.xz" checksum=54e5b07be3c0f7b158302f54ee79d4de1cb002f4259b6642b79b1e0e314a959c diff --git a/srcpkgs/vte290/update b/srcpkgs/vte290/update new file mode 100644 index 0000000000..8f56e49958 --- /dev/null +++ b/srcpkgs/vte290/update @@ -0,0 +1,2 @@ +pkgname=vte +site="https://git.gnome.org/browse/vte/" diff --git a/srcpkgs/vte3/template b/srcpkgs/vte3/template index 311cd0c038..18b8686820 100644 --- a/srcpkgs/vte3/template +++ b/srcpkgs/vte3/template @@ -12,8 +12,6 @@ short_desc="Terminal widget with improved accessibility and I18N support" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.gnome.org" license="LGPL-2.1" -update_pkgname=vte -update_site="https://git.gnome.org/browse/vte/" distfiles="${GNOME_SITE}/vte/${version%.*}/vte-${version}.tar.xz" checksum=3f3ae063207ceea9ca2abd1cf9c9f8bd2b66ca82156609f31f3554288c0c2bf4 diff --git a/srcpkgs/vte3/update b/srcpkgs/vte3/update new file mode 100644 index 0000000000..8f56e49958 --- /dev/null +++ b/srcpkgs/vte3/update @@ -0,0 +1,2 @@ +pkgname=vte +site="https://git.gnome.org/browse/vte/" diff --git a/srcpkgs/wavpack/template b/srcpkgs/wavpack/template index b3338457d7..d9613073e3 100644 --- a/srcpkgs/wavpack/template +++ b/srcpkgs/wavpack/template @@ -7,7 +7,6 @@ short_desc="An audio codec (lossy and lossless)" homepage="http://www.wavpack.com/" license="BSD" maintainer="Juan RP <xtraeme@gmail.com>" -update_site="${homepage}downloads.html" distfiles="http://www.wavpack.com/${pkgname}-${version}.tar.bz2" checksum=2cade379b0aba99fbc4e442ccc6dac6c609f6212e46516a083e24c8c364430a4 diff --git a/srcpkgs/wavpack/update b/srcpkgs/wavpack/update new file mode 100644 index 0000000000..94e6728911 --- /dev/null +++ b/srcpkgs/wavpack/update @@ -0,0 +1 @@ +site="${homepage}downloads.html" diff --git a/srcpkgs/webkit2gtk/template b/srcpkgs/webkit2gtk/template index cbbbbc378e..1d77921dcb 100644 --- a/srcpkgs/webkit2gtk/template +++ b/srcpkgs/webkit2gtk/template @@ -11,8 +11,6 @@ license="LGPL-2.1, 2-clause-BSD" distfiles="${homepage}/releases/webkitgtk-${version}.tar.xz" checksum=beef5e24edd9b9cade22d80bf373c74d236f996fe30f49f8697a70f267772e9b wrksrc="webkitgtk-$version" -update_pkgname="webkitgtk" -update_ignore="*.[13579].*" # ETOOHUGE nodebug=1 diff --git a/srcpkgs/webkit2gtk/update b/srcpkgs/webkit2gtk/update new file mode 100644 index 0000000000..3ad07576a8 --- /dev/null +++ b/srcpkgs/webkit2gtk/update @@ -0,0 +1,2 @@ +pkgname="webkitgtk" +ignore="*.[13579].*" diff --git a/srcpkgs/wireshark/template b/srcpkgs/wireshark/template index c81ee9c2be..7f4778fdc0 100644 --- a/srcpkgs/wireshark/template +++ b/srcpkgs/wireshark/template @@ -14,7 +14,6 @@ short_desc="A network protocol analyzer" maintainer="Enno Boland <eb@s01.de>" homepage="http://www.wireshark.org" license="GPL-2" -update_ignore="*.?[13579].*" distfiles="http://www.wireshark.org/download/src/${pkgname}-${version}.tar.bz2" checksum=69950b9dcb1a630982b5f680554d73d27ee0dc856fc6aeef88c8d04eb5ac33ea system_groups="wireshark" diff --git a/srcpkgs/wireshark/update b/srcpkgs/wireshark/update new file mode 100644 index 0000000000..48c01daf35 --- /dev/null +++ b/srcpkgs/wireshark/update @@ -0,0 +1 @@ +ignore="*.?[13579].*" diff --git a/srcpkgs/wpa_gui/template b/srcpkgs/wpa_gui/template index 5b50f735da..945fd00dab 100644 --- a/srcpkgs/wpa_gui/template +++ b/srcpkgs/wpa_gui/template @@ -10,7 +10,6 @@ short_desc="WPA/WPA2/IEEE 802.1X Supplicant -- Graphical User Interface" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="BSD" homepage="http://hostap.epitest.fi/wpa_supplicant" -update_pattern='wpa_supplicant-\K[\d.]+\d+' distfiles="http://hostap.epitest.fi/releases/wpa_supplicant-${version}.tar.gz" checksum=eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a diff --git a/srcpkgs/wpa_gui/update b/srcpkgs/wpa_gui/update new file mode 100644 index 0000000000..ff4f704161 --- /dev/null +++ b/srcpkgs/wpa_gui/update @@ -0,0 +1 @@ +pattern='wpa_supplicant-\K[\d.]+\d+' diff --git a/srcpkgs/wxGTK/template b/srcpkgs/wxGTK/template index bf9294a7bb..24cb0ffe56 100644 --- a/srcpkgs/wxGTK/template +++ b/srcpkgs/wxGTK/template @@ -16,7 +16,6 @@ short_desc="The wxWidgets GUI toolkit library (version 2)" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.wxwidgets.org/" license="wxWindows" -update_pkgname=wxPython distfiles="${SOURCEFORGE_SITE}/wxpython/wxPython-src-${version}.tar.bz2" checksum=1f3f153d9f1504c6ce2d2c4b23e940b8f58b81f4cba35cda1a5bb31142243cd0 diff --git a/srcpkgs/wxGTK/update b/srcpkgs/wxGTK/update new file mode 100644 index 0000000000..1527342250 --- /dev/null +++ b/srcpkgs/wxGTK/update @@ -0,0 +1 @@ +pkgname=wxPython diff --git a/srcpkgs/xaos/template b/srcpkgs/xaos/template index 38bcb46565..7514d7e490 100644 --- a/srcpkgs/xaos/template +++ b/srcpkgs/xaos/template @@ -9,7 +9,6 @@ short_desc="Fast interactive real-time fractal zoomer/morpher" maintainer="Christian Neukirchen <chneukirchen@gmail.com>" license="GPL-3" homepage="http://matek.hu/xaos/" -update_ignore="*b *s" distfiles="${SOURCEFORGE_SITE}/$pkgname/${pkgname}-${version}.tar.gz" checksum=989f3e38f7793810cbb1496d5291d44836a7d7c058422b9ee1cffb163a0b8d95 diff --git a/srcpkgs/xaos/update b/srcpkgs/xaos/update new file mode 100644 index 0000000000..f14e3aadcb --- /dev/null +++ b/srcpkgs/xaos/update @@ -0,0 +1 @@ +ignore="*b *s" diff --git a/srcpkgs/xdelta3/template b/srcpkgs/xdelta3/template index b41e399c32..5c938eb738 100644 --- a/srcpkgs/xdelta3/template +++ b/srcpkgs/xdelta3/template @@ -9,7 +9,5 @@ short_desc="Delta/differential compression tools, VCDIFF/RFC 3284 delta compress maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://code.google.com/p/xdelta/" -update_pkgname=xdelta -update_pattern=$pkgname'-\K[\d.]+\d+' distfiles="http://xdelta.googlecode.com/files/xdelta3-${version}.tar.xz" checksum=3a86f29c95664fb44b8a40ff22d9bcc3e87aa8c01f0ff75931a7fa78ed3d2e55 diff --git a/srcpkgs/xdelta3/update b/srcpkgs/xdelta3/update new file mode 100644 index 0000000000..3d26a415b0 --- /dev/null +++ b/srcpkgs/xdelta3/update @@ -0,0 +1,2 @@ +pkgname=xdelta +pattern=$pkgname'-\K[\d.]+\d+' diff --git a/srcpkgs/xdg-utils/template b/srcpkgs/xdg-utils/template index 9a5a615f21..fdcc9668a1 100644 --- a/srcpkgs/xdg-utils/template +++ b/srcpkgs/xdg-utils/template @@ -7,8 +7,6 @@ revision=1 noarch="yes" build_style=gnu-configure short_desc="Tools to assist applications with various desktop integration tasks" -update_site="http://cgit.freedesktop.org/xdg/xdg-utils/" -update_pattern='/tag/\?id=\K[\d\w-.]+' homepage="http://portland.freedesktop.org/" license="MIT" maintainer="Juan RP <xtraeme@gmail.com>" diff --git a/srcpkgs/xdg-utils/update b/srcpkgs/xdg-utils/update new file mode 100644 index 0000000000..59e7c5de86 --- /dev/null +++ b/srcpkgs/xdg-utils/update @@ -0,0 +1,2 @@ +site="http://cgit.freedesktop.org/xdg/xdg-utils/" +pattern='/tag/\?id=\K[\d\w-.]+' diff --git a/srcpkgs/xen/template b/srcpkgs/xen/template index 4164b44d24..5ca3d91de6 100644 --- a/srcpkgs/xen/template +++ b/srcpkgs/xen/template @@ -7,8 +7,6 @@ short_desc="The Xen hypervisor utilities" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://xen.org" license="GPL-2" -update_site="http://xenbits.xen.org/gitweb/?p=xen.git" -update_pattern='RELEASE-\K[\d.]+' distfiles="http://bits.xensource.com/oss-xen/release/$version/xen-$version.tar.gz" checksum=55b49d3c4575d7791275125ff87c0f86f1d1e0f7f2718b6fd1c4f88a9bc7ea25 diff --git a/srcpkgs/xen/update b/srcpkgs/xen/update new file mode 100644 index 0000000000..ab4c719002 --- /dev/null +++ b/srcpkgs/xen/update @@ -0,0 +1,2 @@ +site="http://xenbits.xen.org/gitweb/?p=xen.git" +pattern='RELEASE-\K[\d.]+' diff --git a/srcpkgs/xorg-util-macros/template b/srcpkgs/xorg-util-macros/template index bfb6478da8..78841e6bff 100644 --- a/srcpkgs/xorg-util-macros/template +++ b/srcpkgs/xorg-util-macros/template @@ -10,6 +10,5 @@ short_desc="X.org autotool macros" homepage="http://www.x.org/" license="MIT" maintainer="Juan RP <xtraeme@gmail.com>" -update_pkgname=util-macros distfiles="${XORG_SITE}/util/util-macros-$version.tar.bz2" checksum=2835b11829ee634e19fa56517b4cfc52ef39acea0cd82e15f68096e27cbed0ba diff --git a/srcpkgs/xorg-util-macros/update b/srcpkgs/xorg-util-macros/update new file mode 100644 index 0000000000..dc842ac946 --- /dev/null +++ b/srcpkgs/xorg-util-macros/update @@ -0,0 +1 @@ +pkgname=util-macros diff --git a/srcpkgs/xscreensaver/template b/srcpkgs/xscreensaver/template index 27ef41dfb9..fd5d6c7611 100644 --- a/srcpkgs/xscreensaver/template +++ b/srcpkgs/xscreensaver/template @@ -13,7 +13,6 @@ hostmakedepends="bc perl pkg-config intltool" makedepends="pam-devel gdk-pixbuf-devel gtk+-devel libXt-devel libXpm-devel libxml2-devel libglade-devel glu-devel libjpeg-turbo-devel libXmu-devel" homepage="http://www.jwz.org/xscreensaver/" -update_site="${homepage}download.html" distfiles="http://www.jwz.org/xscreensaver/xscreensaver-${version}.tar.gz" checksum=4252a6079d2d2f5b342e8bdd172cbad5f0af73daf4e412b61a68344d91ca93bd diff --git a/srcpkgs/xscreensaver/update b/srcpkgs/xscreensaver/update new file mode 100644 index 0000000000..7102ec7a33 --- /dev/null +++ b/srcpkgs/xscreensaver/update @@ -0,0 +1 @@ +site="${homepage}download.html" diff --git a/srcpkgs/xvidcore/template b/srcpkgs/xvidcore/template index 82b436666c..2e768788ea 100644 --- a/srcpkgs/xvidcore/template +++ b/srcpkgs/xvidcore/template @@ -10,7 +10,6 @@ short_desc="ISO MPEG-4 compliant video codec" maintainer="Juan RP <xtraeme@gmail.com>" homepage="http://www.xvid.org" license="GPL-2" -update_site="https://labs.xvid.com/source/" distfiles="http://downloads.xvid.org/downloads/$pkgname-$version.tar.bz2" checksum=b0e1ba805a776f791e45040b9aaa0d7ca6d0cb1e4899c7fded275fb57139af54 diff --git a/srcpkgs/xvidcore/update b/srcpkgs/xvidcore/update new file mode 100644 index 0000000000..9a22bfe1e4 --- /dev/null +++ b/srcpkgs/xvidcore/update @@ -0,0 +1 @@ +site="https://labs.xvid.com/source/" diff --git a/srcpkgs/yabause-gtk/template b/srcpkgs/yabause-gtk/template index 9190f99476..c15965dc91 100644 --- a/srcpkgs/yabause-gtk/template +++ b/srcpkgs/yabause-gtk/template @@ -12,6 +12,5 @@ short_desc="A Sega Saturn emulator with GTK UI)" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://yabause.org/" -update_pkgname="${pkgname%-gtk}" distfiles="${SOURCEFORGE_SITE}/${pkgname%-gtk}/${pkgname%-gtk}-${version}.tar.gz" checksum=75e6320873ef6f8ec956568bff5a8f3b67500bdf52a7e0aa88e0a554b2dd775a diff --git a/srcpkgs/yabause-gtk/update b/srcpkgs/yabause-gtk/update new file mode 100644 index 0000000000..b93f2e9ead --- /dev/null +++ b/srcpkgs/yabause-gtk/update @@ -0,0 +1 @@ +pkgname="${pkgname%-gtk}" diff --git a/srcpkgs/yquake2/template b/srcpkgs/yquake2/template index 52843ed7fc..01646760be 100644 --- a/srcpkgs/yquake2/template +++ b/srcpkgs/yquake2/template @@ -11,7 +11,6 @@ short_desc="An enhanced client for id Software's Quake II (Yamagi Quake II)" maintainer="Juan RP <xtraeme@gmail.com>" license="GPL-2" homepage="http://www.yamagi.org/quake2/" -update_pkgname=quake2 distfiles="http://deponie.yamagi.org/quake2/quake2-${version}.tar.xz" checksum=335f1d8b104453147d74f712b934d71a622fcd304c64afad5550ec85913f446a only_for_archs="i686 x86_64" diff --git a/srcpkgs/yquake2/update b/srcpkgs/yquake2/update new file mode 100644 index 0000000000..cf710bbfd6 --- /dev/null +++ b/srcpkgs/yquake2/update @@ -0,0 +1 @@ +pkgname=quake2 diff --git a/srcpkgs/zlib/template b/srcpkgs/zlib/template index 15fe1ab757..1baf3be78c 100644 --- a/srcpkgs/zlib/template +++ b/srcpkgs/zlib/template @@ -8,7 +8,6 @@ short_desc="A compression/decompression Library" maintainer="Juan RP <xtraeme@gmail.com>" license="zlib" homepage="http://www.zlib.net" -update_pattern="<B> zlib \K.+?(?=</B>)" distfiles="$homepage/$pkgname-$version.tar.gz" checksum=36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d diff --git a/srcpkgs/zlib/update b/srcpkgs/zlib/update new file mode 100644 index 0000000000..c96efe7b1c --- /dev/null +++ b/srcpkgs/zlib/update @@ -0,0 +1 @@ +pattern="<B> zlib \K.+?(?=</B>)" diff --git a/srcpkgs/zsync/template b/srcpkgs/zsync/template index c0ba8fd0ba..49bcca3ec7 100644 --- a/srcpkgs/zsync/template +++ b/srcpkgs/zsync/template @@ -7,6 +7,5 @@ short_desc="Client-side implementation of the rsync algorithm" maintainer="Juan RP <xtraeme@gmail.com>" license="Artistic" homepage="http://zsync.moria.org.uk/" -update_site="${homepage}downloads" distfiles="http://zsync.moria.org.uk/download/zsync-$version.tar.bz2" checksum=0b9d53433387aa4f04634a6c63a5efa8203070f2298af72a705f9be3dda65af2 diff --git a/srcpkgs/zsync/update b/srcpkgs/zsync/update new file mode 100644 index 0000000000..09a38a8f61 --- /dev/null +++ b/srcpkgs/zsync/update @@ -0,0 +1 @@ +site="${homepage}downloads"