[SOLVED] Applying patches: build() or package()

I am writing a package that applies a patch to rsync.
Based on other packages I have seen, it seems that the patch should be applied in the build() function, but I'm not sure why. Am I correct that this is the right place to apply patches? Why should this not be done in package()?
Thanks in advance.
Last edited by jalu (2010-08-28 03:34:50)

Whenever possible, opt to patch in the build function. The package function should serve only to move the proper files in place -- in the classical Makefile sense, it should run 'make install' and tidy up whatever else needs to be moved around.

Similar Messages

  • [SOLVED]How to build debian package source in Arch Linux?

    I'm porting openssl for sh4 arch.
    If I use Arch Linux PKGBUILD, it built failed. (I guess that's caused by there is no asm code for sh4 cpu).
    So, I decide use debian's source.
    But, is there any one know how to porting debian's package into Arch Linux?
    I can apt-get source openssl from other machine.  But I don't know what's the correct step to build it into Arch Linux' structure.
    Solution: refer brebs's PKGBUILD hint.
    Last edited by dlin (2013-02-26 09:44:16)

    The source is not hard to find. Look on Debian packages - each package has 2 files, the ".orig", and Debian's diff (which is sometimes not a diff, these days, thankfully because just having a simple "debian/patches" subdirectory available is a little bit easier for us).
    Edit: Here ya go, convenient links:
    http://packages.debian.org/sid/openssl
    http://ftp.de.debian.org/debian/pool/ma … ian.tar.gz
    Last edited by brebs (2013-02-26 09:42:10)

  • [SOLVED]I can build a package with "make install" but not with makepkg

    I'm quite new to Arch and it's my first PKGBUILD.
    I successfully built the software lhapdf http://www.hepforge.org/archive/lhapdf/ … 3.1.tar.gz with the traditional system:
    1) I do a patch for compatibility with gcc 4.3
    cd lhapdf-5.3.1
    sed -i "s/<string>/<cstring>/" ccwrap/test-lhapdf-ccwrap.cc
    and then
    ./configure --prefix=/usr
    make
    sudo make install
    Then I tried to write a PKGBUILD
    pkgname=lhapdf
    pkgver=5.3.1
    pkgrel=1
    pkgdesc="Unified and easy to use interface to modern PDF sets"
    arch=(i686 x86_64)
    url="http://projects.hepforge.org/lhapdf"
    license=('GPL')
    groups=()
    depends=()
    makedepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    source=(http://www.hepforge.org/archive/lhapdf/$pkgname-$pkgver.tar.gz)
    noextract=()
    md5sums=() #generate with 'makepkg -g'
    build() {
    cd "$srcdir/$pkgname-$pkgver"
    #Change needed in order to compile with gcc 4.3
    sed -i "s/<string>/<cstring>/" ccwrap/test-lhapdf-ccwrap.cc
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR="$pkgdir" install
    # vim:set ts=2 sw=2 et:
    and it doesn't work. The last lines of the output of makepkg are:
    g++ -march=nocona -O2 -pipe -o .libs/test-lhapdf-ccwrap test-lhapdf-ccwrap.o -L/home/cafarell/abs/lhapdf/src/lhapdf-5.3.1/ccwrap -L/home/cafarell/abs/lhapdf/src/lhapdf-5.3.1/src -lLHAPDFWrap /home/cafarell/abs/lhapdf/src/lhapdf-5.3.1/src/.libs/libLHAPDF.so -Wl,--rpath -Wl,/usr/lib
    /usr/bin/ld: cannot find -lLHAPDFWrap
    collect2: ld returned 1 exit status
    make[1]: *** [test-lhapdf-ccwrap] Error 1
    make[1]: *** Waiting for unfinished jobs....
    make[1]: Leaving directory `/home/cafarell/abs/lhapdf/src/lhapdf-5.3.1/ccwrap'
    make: *** [all-recursive] Error 1
    ==> ERRORE: Compilazione interrotta.
    L'operazione sta per essere interrotta...
    Any idea?
    Last edited by alcafar (2008-04-09 11:03:00)

    Thank you Snowman, it works with options=('!makeflags'). The changes in the paths were not needed, I copied them from /usr/share/pacman/PKGBUILD.proto, probably is some new feature.
    Now, I'd like to post the PKGBUILD to AUR. This is currently my PKGBUILD:
    # Contributor: My name <[email protected]>
    pkgname=lhapdf
    pkgver=5.3.1
    pkgrel=1
    pkgdesc="Unified and easy to use interface to modern PDF sets"
    arch=(i686 x86_64)
    url="http://projects.hepforge.org/lhapdf"
    license=('GPL')
    groups=()
    depends=(gcc-libs)
    makedepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=('!makeflags')
    install=
    source=(http://www.hepforge.org/archive/lhapdf/$pkgname-$pkgver.tar.gz)
    noextract=()
    md5sums=('df667840071996d2c58a125567be26b2')
    build() {
    cd "$srcdir/$pkgname-$pkgver"
    #Change needed in order to compile with gcc 4.3
    sed -i "s/<string>/<cstring>/" ccwrap/test-lhapdf-ccwrap.cc
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR="$pkgdir" install
    # vim:set ts=2 sw=2 et:
    I have the following output from namcap:
    $ namcap lhapdf-5.3.1-1-x86_64.pkg.tar.gz
    lhapdf W: File (usr/lib/libLHAPDFWrap.la) is a libtool file.
    lhapdf W: File (usr/lib/libLHAPDF.la) is a libtool file.
    $ namcap PKGBUILD
    PKGBUILD (lhapdf) W: Missing Maintainer tag
    PKGBUILD (lhapdf) W: Missing CVS Id tag
    and this output from ldd
    $ ldd libLHAPDF.so
    linux-vdso.so.1 => (0x00007fff86dfe000)
    libgfortran.so.3 => /usr/lib/libgfortran.so.3 (0x00002b70367fe000)
    libm.so.6 => /lib/libm.so.6 (0x00002b7036ace000)
    libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00002b7036d52000)
    libc.so.6 => /lib/libc.so.6 (0x00002b7036f69000)
    /lib/ld-linux-x86-64.so.2 (0x0000555555554000)
    $ ldd libLHAPDFWrap.so
    linux-vdso.so.1 => (0x00007fffeeffe000)
    libLHAPDF.so.0 => not found
    libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00002b11bbd53000)
    libm.so.6 => /lib/libm.so.6 (0x00002b11bc060000)
    libc.so.6 => /lib/libc.so.6 (0x00002b11bc2e3000)
    libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00002b11bc636000)
    /lib/ld-linux-x86-64.so.2 (0x0000555555554000)
    What should I add to PKGBUILD?
    The program is in fortran, so I'm surprised that namcap did not add gcc-fortran in the dependencies. Should I add it to depends or makedepends? Or maybe it is included in gcc-libs?

  • [SOLVED] How to install AUR packages with patchname.patch

    Hi all,
    I'm trying to install lottanzb from the AUR and there's are a dependency called par2cmdline 0.4-13 that has a lot of nameofpatch.patch that are included in the AUR par2cmdline 0.4-13 package page that just open up to a url that shows code.
    I created patch files from the code displayed in the url with a text editor and added them to the extracted LOTTANZB folder in my build directory but when I go to build the package with PKGBUILD it runs through a check sum while building and the checks don't match.
    I'm obviously doing something fundamentally wrong here. Can someone direct me?
    Thanks,
    Last edited by bennylb0 (2010-05-28 13:30:16)

    Hi, thanks for reply.
    Sorry, my mistake.
    I did place patch files inside the par2cmdline-0.4 folder. The only reason I created the .patch files and placed them inside par2cmdline-0.4 folder was because the PKGBUILD as well as the other 5 .patch files didn't exist inside the extracted build folder. They only place I could find them was in AUR par2cmdline-0.4 displayed as a url.
    When I copied and created the PKGBUILD as it did not exist inside the extracted folder par2cmdline-0.4 folder I received the following error:- 
    Error autoconf.patch was not found in the build directory and is not a url. That along with 4 others do not exist in the build directory.
    You can see this bellow:-
    [ben@ben par2cmdline-0.4]$ makepkg
    ==> Making package: par2cmdline 0.4-13 i686 (Fri May 28 22:08:21 EST 2010)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
      -> Downloading par2cmdline-0.4.tar.gz...
    --2010-05-28 22:08:23--  http://downloads.sourceforge.net/source … 0.4.tar.gz
    Resolving downloads.sourceforge.net... 216.34.181.59
    Connecting to downloads.sourceforge.net|216.34.181.59|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: http://downloads.sourceforge.net/projec … 0.4.tar.gz [following]
    --2010-05-28 22:08:23--  http://downloads.sourceforge.net/projec … 0.4.tar.gz
    Reusing existing connection to downloads.sourceforge.net:80.
    HTTP request sent, awaiting response... 302 Found
    Location: http://transact.dl.sourceforge.net/proj … 0.4.tar.gz [following]
    --2010-05-28 22:08:24--  http://transact.dl.sourceforge.net/proj … 0.4.tar.gz
    Resolving transact.dl.sourceforge.net... 202.55.147.10
    Connecting to transact.dl.sourceforge.net|202.55.147.10|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 239312 (234K) [application/x-gzip]
    Saving to: "par2cmdline-0.4.tar.gz.part"
    100%[===================================================>] 239,312      179K/s   in 1.3s   
    2010-05-28 22:08:26 (179 KB/s) - "par2cmdline-0.4.tar.gz.part" saved [239312/239312]
    ==> ERROR: par2cmdline-0.4-autoconf.patch was not found in the build directory and is not a URL.

  • Invalid package WWSBR_IMT_SERVICES after apply patch 3.0.9.8.1

    After applying patch 3.0.9.8.1, get an invalid package.
    Upon trying to compile the package WWSBR_IMT_SERVICES the following error
    occurs
    SQL> show err
    Errors for PACKAGE BODY WWSBR_IMT_SERVICES:
    291/7 PL/SQL: Statement ignored
    291/20 PLS-00201: identifier 'CTX_DOC.PKENCODE' must be declared
    293/8 PL/SQL: Statement ignored
    293/21 PLS-00201: identifier 'CTX_DOC.PKENDCODE' must be declare
    We have NOT installed oracle intermedia... why is this error occuring?

    According to BUG 2120388 this is ok!

  • Solving Deadlock while applying patch

    Hi,
    Kindly let me know how to solve the Deadlock situation while applying patch.
    How to find the details of deadlock .
    Regards,
    deep

    adpatch utility automatically resubmits workers that fail for any reason. They are resubmitted twice, and this usually takes care of any deadlock issues. Only on the third failure does adpatch report an error. If you are getting deadlock errors, these should be recorded in the database alert.log. Pl also confirm that all application services have been brought down successfully before you start to apply patches using adpatch. Not doing so could cause deadlock issues.
    HTH
    Srini

  • [SOLVED] conky-lua build fails due to toluapp package issues

    I am trying to install conky-lua from AUR on 64 bit Arch and failing miserably.
    When running the following:
    yaourt -Sy conky-lua
    I get the following error:
    /usr/bin/ld: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libtolua++.a(tolua_is.o): relocation R_X86_64_32S against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libtolua++.a: could not read symbols: Bad value
    collect2: ld returned 1 exit status
    make[1]: *** [libcairo.la] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-mark/aur-conky-lua/conky-lua/src/conky-1.7.2/lua'
    make: *** [all-recursive] Error 1
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build conky-lua package.
    I have read through what search results I can find on the topic (both here and via google) and have attempted to remedy the situation by adding build options to the toluapp build to provide for the conky-lua build. I have tried this by adding CCFLAGS = '-fPIC' to the scons call in the PKGBUILD file, I have also tried editing the config_linux.py file, which sits along side the main build file, to include the -fPIC switch also, which doesn't work either. i.e. I have this in the config_linux.py now:
    CCFLAGS = ['-O2', '-ansi', '-Wall', '-fPIC']
    Which doesn't work, it results in:
    ==> Validating source files with md5sums...
    tolua++-1.0.93.tar.bz2 ... Passed
    config_linux.py ... FAILED
    ==> ERROR: One or more files did not pass the validity check!
    Error: Makepkg was unable to build toluapp package.
    Can someone help me through a build as I have never come across scons before and maybe I am providing directives to the toluapp build incorrectly? I am still thinking in "make" terms...
    I NEED lua in conky
    Thanks in advance
    Regards,
    Kaivalagi
    Last edited by kaivalagi (2009-11-11 07:32:04)

    I was asked by email on what exactly I did to get conky-lua installed and working on 64bit Arch, so I thought I would post my reply below in case it is of help to anyone else. Cheers
    Run "yaourt -S conky-lua". Amongst other things this will try to install a dependancy which you need to mess about with, the package you need to edit is "toluapp".
    When the "toluapp" package is downloaded by yaourt answer y to the edit question and provide something like gedit or kate as the editor to use
    You'll now see the PKGBUILD file in the editor, this doesn't need editing just yet. But if you open file from the editor you'll see the directory thie PKGBUILD is in, and you want to edit the config_linux.py file you'll see there.
    You should see this line in the config_linux.py file:
    CCFLAGS = ['-O2', '-ansi', '-Wall']
    Change it so it is like this:
    CCFLAGS = ['-O2', '-ansi', '-Wall', '-fPIC']
    Now, back to the PKGBUILD file, you'll see this line:
    md5sums=('100aa6907b8108582080b37d79c0afd7' 'bab107cdd2d18d3453a2344341b77c45')
    These checksums line up with tarball and config_linux.py files, and this will stop you're edit from working if not amended because the .py file isn't what it should be, we changed it. So run md5sum against the .py file and update the second checksum in the line appropriately.
    Carry on with the package installation and conky should have lua support
    Last edited by kaivalagi (2010-01-14 08:50:55)

  • [SOLVED] Unable to build package Intel-OpenCL-SDK from the AUR

    Good morning,
    I am having some issues in regards to building a package from the AUR: https://aur.archlinux.org/packages/intel-opencl-sdk/
    If I understand correctly this is a 64 bit package, so I made sure that my processor has the LM flag. Also I have checked which kernel I am running:
    >$ uname -m
    x86_64
    When I start building the package it comes up with an error saying:
    ==> ERROR: intel-opencl-sdk is not available for the 'i686' architecture.
    Note that many packages may need a line added to their PKGBUILD
    such as arch=('i686').
    So I went in to the PKGBUILD and changed the line x86_64 to i686. This seemed to started the build, but it does stop working rather soon, giving me the following error:
    ==> Tidying install...
    -> Purging unwanted files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    strip:./opt/intel/opencl-sdk/libOclCpuBackEnd.so: File format not recognized
    /usr/bin/fakeroot: line 181: 846 User defined signal 1 FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB" "$@"
    So I do not know where it is going wrong, although it also sounds that my install of Arch might be a bit dodgy as he does not want to build the package with the x86_64 setting ...
    Could somebody shed some light on this matter?
    Last edited by ruurdkrekt (2013-04-04 11:09:00)

    Scimmia wrote:No, it's going to need 64 bit versions of the libs it links to. If you want to use this package, you're going to have to reinstall all of your packages. Probably easiest to start from scratch, to be honest.
    So is it possible to update the dependencies to 64bit and then build this package?
    When I change /etc/pacman.conf to take x86_64 architecture packages:
    Architecture = x86_64
    And I change the flags of /etc/makepkg.conf to x86_64:
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
    CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
    Then when I do pacman -S llvm then it will say:
    error: failed to prepare transaction (package architecture is not valid)
    :: package llvm-3.2-5-i686 does not have a valid architecture
    However I did put everything to x86_64, so where does he get the i686 from?

  • [solved] building a package with bjam

    Hello all,
    I'm trying to figure out how to create a package that builds with bjam. When I build the package manually, I only need to run
    ./bjam --prefix=/usr --with-feature1 --with-feature2 ...etc
    and the binaries are created correctly. I need to use "./bjam" because the project supplies its own version of bjam to reassure compatibility with its code.
    When I use the same command inside the PKGBUILD, compilation starts fine and in the end I get an error in the build() function, without further explanations.
    Since I'm not at all familiar with bjam, can anyone point me to some sample PKGBUILDs or give me some tips how to create the PKGBUILD?
    TIA
    EDIT: It seems no special procedure is needed. The problem occurs due to a failure in the bjam build which forces makepkg to abort.
    Last edited by panosk (2012-09-10 19:35:29)

    The pkgtools package will do this for you.
    See https://wiki.archlinux.org/index.php/Pkgtools for instructions on how to set it up.
    Last edited by szim90 (2011-08-03 14:25:58)

  • [Solved] Would someone mind building this package for me?

    Because I'm having a problem with on of it's build dependencies I'm unable to build this package:
    awn-extras-applets-bzr
    Would someone mind building it for me?  It's for x86_64 and from the AUR.  I would definitely appreciate it.
    Last edited by Gen2ly (2012-05-01 17:16:23)

    SidK wrote:I've uploaded it to http://ompldr.org/vZGwxNg/awn-extras-ap … pkg.tar.xz
    Do you also need the dependencies from the AUR compiled?
    No, I'm good up to then.  Installed and it works.  Very much appreciate the help.

  • Error while applying patch for SOA suite 10.1.3.4 on Weblogic 9.2 - URGENT

    Hi All,
    I am trying to apply a weblogic patch on SOA server but facing an error while applying the Opatch . I checked the accessibilty to opatch inventory by using the command % opatch lsinventory . This executed fine and there were no errors. But when I try applying the opatch I get the error -that some jars missing . Even if I replace the jars and try executing opatch again I face the same error . I googled a lot but couldnt find any solution . Please let me what can be done for solving this error .
    D:\7337034>opatch apply -oh D:\product\10.1.3.1\OracleAS_1
    Oracle Interim Patch Installer version 1.0.0.0.61
    Copyright (c) 2009 Oracle Corporation. All Rights Reserved..
    Oracle recommends you to use the latest OPatch version
    and read the OPatch documentation available in the OPatch/docs
    directory for usage. For information about the latest OPatch and
    other support-related issues, refer to document ID 293369.1
    available on My Oracle Support (https://myoraclesupport.oracle.com)
    Oracle Home : D:\product\10.1.3.1\OracleAS_1
    Oracle Home Inventory : D:\product\10.1.3.1\OracleAS_1\inventory
    Central Inventory : C:\Program Files\oracle\inventory
    from : N/A
    OUI location : D:\product\10.1.3.1\OracleAS_1\oui
    OUI shared library : D:\product\10.1.3.1\OracleAS_1\oui\lib\win32\oraInstalle
    r.dll
    Java location : "D:\product\10.1.3.1\OracleAS_1\jdk\jre\bin\java.exe"
    Log file location : D:\product\10.1.3.1\OracleAS_1/.patch_storage/<patch ID>
    /*.log
    Creating log file "D:\product\10.1.3.1\oracleas_1\.patch_storage\7337034\Apply_7
    337034_06-02-2009_13-39-26.log"
    Provide your email address to be informed of security issues, install and
    initiate Oracle Configuration Manager. Easier for you if you use your My
    Oracle Support Email address/User Name.
    Visit http://www.oracle.com/support/policies.html for details.
    Email address/User Name: [email protected]
    Provide your My Oracle Support password to receive security updates via your My
    Oracle Support account.
    Password (optional):
    Password (optional):
    Unable to establish a network connection to Oracle. If your systems require a
    proxy server for outbound Internet connections, enter the proxy server details
    in this format:
    [<proxy-user>@]<proxy-host>[:<proxy-port>]
    If you want to remain uninformed of critical security issues in your
    configuration, enter NONE
    Proxy specification: NONE
    ** Installing base package **
    Deploying core - Version 10.3.1.0.0
    Deploying engines - Version 10.2.7.1.0
    Deploying metricdata - Version 10.2.4.0.3
    Deploying scripts - Version 10.3.1.0.0
    Oracle Configuration Manager has been configured in disconnected mode. If the
    target ORACLE_HOME is running a database, please refer to the
    "Post-installation Database Configuration" section of the OCM Installation
    and Administration Guide
    (http://www.oracle.com/technology/documentation/ocm.html) to complete the
    installation.
    View configuration data reports and access valuable configuration best
    practices by going to My Oracle Support.
    Backing up comps.xml ...
    OPatch detected non-cluster Oracle Home from the inventory and will patch the lo
    cal system only.
    Please shut down Oracle instances running out of this ORACLE_HOME
    (Oracle Home = d:\product\10.1.3.1\oracleas_1)
    Is this system ready for updating?
    Please respond Y|N >
    y
    Applying patch 7337034...
    Patching jar files...
    OPatch encounters the following issues during file patching:
    The following java archives on Windows had problems with being patched:
    1. orabpel.jar
    [ object: DomainFilter.class ]
    2. orabpel.jar
    [ object: AdapterFrameworkListenerImpl$RoutingRuleXPathInfo.class ]
    3. D:\product\10.1.3.1\oracleas_1\integration\esb\lib\orabpel.jar
    [ No java archive file found. ]
    4. orabpel.jar
    [ Couldn't make backup copy of file. ]
    5. D:\product\10.1.3.1\oracleas_1\integration\esb\lib\orabpel.jar
    [ No java archive file found. ]
    6. orabpel.jar
    [ Couldn't make backup copy of file. ]
    7. D:\product\10.1.3.1\oracleas_1\integration\esb\lib\orabpel.jar
    [ No java archive file found. ]
    8. D:\product\10.1.3.1\oracleas_1\integration\esb\lib\orabpel.jar
    [ No java archive file found. ]
    9. orabpel.jar
    [ Couldn't make backup copy of file. ]
    Replying 'Y' will terminate the patch installation immediately. It WILL NOT rest
    ore any updates that have been performed to this point. It WILL NOT update the i
    nventory.
    Replying 'N' will update the inventory showing the patch has been applied.
    NOTE: After replying either 'Y' or 'N' it is critical to review:
    My Oracle Support Note 312767.1 How to rollback a failed Interim patch ins
    tallation.
    Do you want to STOP?
    Please respond Y|N >
    y
    File Patching Error!
    ERROR: OPatch failed during patching, possibly due to missing files.
    OPatch returns with error code = 200

    Hi , I am facing the same issue.
    were you able to resolve it.
    please let me know if you were.
    Many Thanks.

  • Error While Applying patch ST-PI 2008_1_700 to solution Manager

    Dear Techies,
    Thanks alot for your fast response.
    We are trying to upgrade Solution Manager Stack from
    ST-PI 2005_1_700  to ST-PI 2008_1_700 ,
    While applying patch it was suddenly stopped with an error
    "Manual modification adjustment is neccessary"
    While I tried to adjust it.
    In Note correction tree. This the message with " green tick"
    "0001293326 EWA: Newest ST-PI Is Rated 'Outdated'; Wrong RTCCTOOL Date"
    and is not allowing me to proceed further.
    How to go about.
    Thanks in advance.
    regards,
    Kiran

    Hi Varun,
    Thanks for your reply.
    As suggested by you, I executed "RTCCTOOL" programme.
    It Has given that 4 notes were in red status.
    They are.
            1. [Note 69455  ]      Addon upgrade ST-A/PI 01N_700SOL
            Description     "Servicetools for Applications Plug-In" for Solution Manager 4.0-7.10  (Addon delta upgrade package)
            Implementation  From http://service.sap.com/supporttools->ST-A/PI download the addon upgrade package ST-A/PI           
                                     01N_700SOL. Upload to tx SAINT (just as you would  do for an installation) and install as per note 69455
                                     Then restart report RTCCTOOL and choose 'List->Refresh from SAPNet'.
            4. [Note 539977  ]     ST-PI Support Packages
    Description     Addon supportpackage level 4 for ST-PI 2008_1_700 for 7.00 [patches up to level 4 for Basis tools for  services]
    Implementation  Open http://service.sap.com/supporttools-> ST-PI 2008_1_700 ->Supportpk. Add patch SAPKITLRD4 (and predecessors if not yet implemented) to download basket. Release basket via  Maintenance optimizer. Upload from frontend int  transaction SPAM, define a queue and import the queue.
            6. [Note 539977  ]     Note 1312413 for ST-PI
            Description     Maintenance Certificates for SPAM/SAINT may get periodically overwritten by invalid ones on ST-PI  
                                   2008_1_7* SP 00. Prevent this proactively,even if you do not yet use the automatic maint. certificate 
                                  distribution.
             Implementation  We recommend that you implement the Supportpackage SP1 for ST-PI 2008_1* to solve the error. Only if 
                                      not possible implement note 1312413   with not version >=12 using SNOTE. Regarding automatic maint.
                                      certificate distribution see http://service.sap.com/maintenancecertificate.
            9. [Note 1293326  ]    EWA serviceprep correct. in sequence.
    Description     Wrong alerts appear in EWAlert Service preparation section (Newest ST-PI Rated Outdated / Wrong
                          RTCCTOOL Date) if Solution Manager ST-SER < 701_2008_2 SP1 and satellites on ST-PI 2008_1* / ST-A/PI 01L*.
    Implementation  Implement the coding correction of this note 1293326   with SNOTE to solve the wrong service preparation alerts. Else if you do not mind the wrong alerts simply set this recommendation manually to green after reading.
    These are in green status
    Successfully implemented addons/ transports/ notes
            2. [Note 69455  ]    Proc. after addon impl.
            3. [Note 539977  ]   Addon ST-PI 2008_1_700
            5. [Note 539977  ]   Note 1300023 for ST-PI
            7. [Note 539977  ]   Note 1293657 for ST-PI
            8. [Note 12103  ]    Collectors and TCOLL.
    While I tried to implement the note "69455" system is giving the message that there are no valid corrections and is coming out of the process
    "Note 0000069455 cannot be implemented since no valid correction is available."
    And is same for other notes also.
    How to go ahead.
    Thanks in advance.
    Regards,
    Kiran

  • My query is not executing properly after applying patches(bi.7

    iam working bi.7 support package 13
    after applying patches
    my query is not executing properly in production my problem with FI queries
    the query is executing properly but ihav created newformula using formulavariable that fields are not getting data in report if i click on currency conversion iam getting popup but currency translation coversion list is not coming and currency type(target currency also not dispalying)
    but if i execute same query in development its working properly newformula fields are getting data and currency conversion also working in development
    can u please help me in this issure
    i hope as soon i will get solutions from bw gurus

    That currency conversion problem is solved
    i checked TCODE:RSCUR IN PRD its not showing any details
    again i checked in dev and moved all currency types dev to production
    now its wokring
    i hope check with this it will work

  • Can't build the package: ideviceinstaller-git 20120913-1

    Hello,
    I'm trying to build the package ideviceinstaller-git 20120913-1 but I get the following error:
    patching file src/ideviceinstaller.c
    Hunk #1 FAILED at 698.
    1 out of 1 hunk FAILED -- saving rejects to file src/ideviceinstaller.c.rej
    ==> ERROR: A failure occurred in build().
        Aborting...
    there is a similar error reported in the comments of the package in the AUR but it should be solved.
    I'm using a fresh installed archlinux with all the packages up-to-date
    any idea?

    That's the danger of using patches with vcs pkgbuilds. The code has changed so the patch is no longer valid. The maintainer will need to update the patch.

  • ACS 5.3 applying patch

    Hello,
    I have problem with applying patch on ACS 5.3. In release notes there is mentioned following command format:
    acs patch install patch-name.tar.gpg repository repository-name
    The problem is ACS 5.3 does't have this command syntax.
    It does't have acs command.
    Here is what i have trued:
    acs/admin# patch install 5-3-0-40-1.tar.gpg rep
    Do you want to save the current configuration ? (yes/no) [yes] ?
    Generating configuration...
    Saved the running configuration to startup successfully
    % Manifest file not found in the bundle
    repository rep
      url ftp://172.30.5.217
      user user password hash c7b11123e528660abea78d974339875394fbb234
    Here is supported command that i found on ACS 5.3.
    acs/admin# ?
    Exec commands:
      application  Application Install and Administration
      backup       Backup system
      backup-logs  Backup system and application logs
      clock        Set the system clock
      configure    Enter configuration mode
      copy         Copy commands
      debug        Debugging functions (see also 'undebug')
      delete       Delete a file
      dir          List files on local filesystem
      exit         Exit from the EXEC
      forceout     Force Logout all the sessions of a specific system user
      halt         Shutdown the system
      mkdir        Create new directory
      nslookup     DNS lookup for an IP address or hostname
      patch        Install System or Application Patch
      ping         Ping a remote ip address
      reload       Reboot the system
      restore      Restore system
      rmdir        Remove existing directory
      show         Show running system information
      ssh          SSH to a remote ip address
      tech         TAC commands
      telnet       Telnet to a remote ip address
      terminal     Set terminal line parameters
      traceroute   Trace the route to a remote ip address
      undebug      Disable debugging functions (see also 'debug')
      write        Write running system information
    acs/admin#

    Hi,
    I find this odd, can you run a "show application"
    Here is the output of my ACS -
    Version information of installed applications
    Cisco ACS VERSION INFORMATION
    Version : 5.3.0.40.4
    Internal Build ID : B.839.EVAL
    Patches :
    5-3-0-40-2
    5-3-0-40-4
    gdtsrv-acs5/admin# ?
    Exec commands:
      acs          ACS control commands
      acs-config   ACS config mode
      application  Application Install and Administration
      backup       Backup system
      backup-logs  Backup system and application logs
      clock        Set the system clock
      configure    Enter configuration mode
      copy         Copy commands
      debug        Debugging functions (see also 'undebug')
      delete       Delete a file
      dir          List files on local filesystem
      exit         Exit from the EXEC
      forceout     Force Logout all the sessions of a specific system user
      halt         Shutdown the system
      mkdir        Create new directory
      nslookup     DNS lookup for an IP address or hostname
      patch        Install System or Application Patch
      ping         Ping a remote ip address
      reload       Reboot the system
      restore      Restore system
      rmdir        Remove existing directory
      show         Show running system information
      ssh          SSH to a remote ip address
      tech         TAC commands
      telnet       Telnet to a remote ip address
      terminal     Set terminal line parameters
      traceroute   Trace the route to a remote ip address
      undebug      Disable debugging functions (see also 'debug')
      write        Write running system information
    Tarik Admani
    *Please rate helpful posts*

Maybe you are looking for