Tagged Questions

Either (1) Debian Advanced Packaging Tool or (2) Java Annotation Processing Tool

learn more… | top users | synonyms

10
votes
4answers
7k views

The drawbacks of annotation processing in Java?

I am considering starting a project which is used to generate code in Java using annotations (I won't get into specifics, as it's not really relevant). I am wondering about the validity and usefulness ...
7
votes
8answers
5k views

Clone Debian/Ubuntu installation

Is there an easy way of cloning entire installed debian/ubuntu system? I want to have identical installation in terms of installed packages and as much as possible of settings. I've looked into ...
6
votes
3answers
299 views

What happens in BASH when you do Ctrl-C (hint, it's not simply sending a SIGINT)

A little background first - When I do apt-get install downloads from my company internet it provides a high burst of speed (400-500KB/s) for the first 10 seconds or so before dropping down to a tenth ...
6
votes
2answers
214 views

How to use java annotations to modify source code before final compilation?

I've read from the apt tool page that one can create AnnotationProcessors to generate new derived files (source files, class files, deployment descriptors, etc.). I am looking for example to do so. ...
4
votes
1answer
91 views

Is there a C# equivalent of Java's Annotation Processing Tool (apt)?

Java's apt tool allows you to execute code at compile time based upon the annotations you place in your code. C# has attributes, which work like Java's annotations, but try as I might I can't seem to ...
4
votes
2answers
59 views

Get a List of conffiles in a deb package in python

I want to get the list of conffiles associated with a deb package using python. I am working on a project for which I need to know if any conffile installed by a package is modified so I need to have ...
4
votes
4answers
673 views

How can I automate dpkg/apt-get?

I'm trying to create a script that automatically downloads packages for new servers. However, some things like 'mysql-server' can not installed automatically cause you need to configure them in the ...
3
votes
2answers
117 views

processing of annotations inside a method body

I am processing java annotations using the Pluggable Annotation Processing API. Is it somehow possible to also process annotations used inside a method body? thanks for help. Peter
3
votes
2answers
252 views

install mysql on ubuntu without password prompt

how to write a script to install mysql server on ubuntu?. sudo apt-get install mysql will install and ask for password for this how to assing password in script. #!/bin/bash sudo apt-get install ...
3
votes
2answers
120 views

How to know the system is Debian or CentOS in Python?

I want to write some install scripts by python, it should know the OS to choose either apt command or yum command. It seems sys.platform can tell 'win32' or the others, but how to know it is working ...
3
votes
3answers
529 views

apt(annotation processing tool)

I was trying to find simple example to understand the usage of apt command.but I couldn't find a helpful resource for this. I have referred this Getting Started with the Annotation Processing Tool ...
3
votes
1answer
243 views

How to compare Debian package versions?

I looked at python-apt and python-debian, and they don't seem to have functionality to compare package versions. Do I have to write my own, or is there something I can use? Ideally, it would look ...
3
votes
1answer
105 views

Eclipse compiler with APT

What is the correct way to call the Eclipse compiler with an APT processor from Java? I am using the following Maven dependency for the compiler <dependency> ...
3
votes
3answers
674 views

Generating equals / hashcode / toString using annotation

I believe I read somewhere people generating equals / hashcode / toString methods during compile time (using APT) by identifying which fields should be part of the hash / equality test. I couldn't ...
3
votes
2answers
359 views

How to use the APT tool to create exercises in course material

I'm in the process of creating exercises in how to write a plug-in to a system integration tool. We will have the correct answers implemented for demonstration after exercises, but the students will ...
3
votes
3answers
942 views

Debian: How can I pull a single package with dependencies from another repository?

I am on debian etch and I want to pull subversion1.5.1 from testing though it is a production machine. I need to keep the risk minimal. Any hints?
3
votes
6answers
4k views

How do I preserve installed applications when migrating Ubuntu to another platform?

I'm looking at maybe moving from an older AMD64 to a new Intel dual-core which is 32 bit. Installation isn't a problem but can I transfer all the installed apps? I haven't been able to find anything ...
3
votes
7answers
858 views

Obscuring network proxy password in plain text files on Linux/UNIX-likes

Typically in a large network a computer needs to operate behind an authenticated proxy - any connections to the outside world require a username/password which is often the password a user uses to log ...
2
votes
2answers
138 views

Using gem install (for watir-webdriver) on Ubuntu

I'm trying to get started with ruby and Watir-webdriver for some test automation. sudo apt-get install ruby rubygems sudo gem install watir-webdriver Whenever I gem install I'm getting these ...
2
votes
1answer
104 views

How to make apt-get accept New config files in a unattended install of debian from Repo

I am writing a script for a unattended install of a package that is in our Repo, It is a Software Package with one of the Debians marked config. Is there any option that I can pass to ...
2
votes
2answers
82 views

updating python-elementtree to overcome xpath selector issue

I'm getting an error when searching for the attribute of a node in my xml using ElementTree. expected path separator ([) The source code is: home_team_node = game_node.find( ...
2
votes
1answer
626 views

Check a list of packages to install with apt-get

I am writing a post-install script for Ubuntu in Perl (same script as seen here). One of the steps is to install a list of packages. The problem is that if apt-get install fails in some of many ...
2
votes
3answers
2k views

Java 6 annotation processing configuration with Ant

I have a custom annotation and it's processor & processorFactory. How do I configure my Ant build file such that: The annotation processor is applied on annotated classes and generates source ...
2
votes
1answer
986 views

How do I customise date/time bindings using JAXWS and APT?

Im using JAXWS 2.1.7, using some classes to run through JAXWS's 'apt' to generate the WSDL. For dates, I use @XmlSchemaType(name="time") private Date wakeupTime; and this generates a schema ...
2
votes
2answers
534 views

How to use libapt (or libept) in debian-like system to list packages and get their infos?

Somebody used libapt or libept to list packages and get informations about package in a debian-like system? Libapt is not well-documented at all, and i've found few examples and tutorials about ...
1
vote
4answers
68 views

C++ Boost thread library pulls in the whole development environment

I am using boost-thread in my application. When I deploy this application on a client machine (running Ubuntu 11.10), I need to make sure that libboost_thread.so is available on the machine. However, ...
1
vote
0answers
24 views

How can I make inc::module::install suggest ubuntu packages? Should I?

I'm trying to deploy an app I wrote onto a new virtual machine and ran into some compatability issues after using cpan to install all of the dependencies I listed inside of my Makefile.pl. In ...
1
vote
6answers
66 views

Python: if string starts with a string from a list

I'm reading a file and each line has a tag, followed by a colon and then the information that I want. A sample file would look like Package: com.something.something Section: Utilities Name: ...
1
vote
4answers
100 views

Using “apt-get install xxx” inside Python script

currently I need to install some package using apt or rpm, according the OS. I saw the lib "apt" to update or upgrade the system, but it is possible use it to install a single package? I was trying ...
1
vote
1answer
46 views

How to get parameter type from javax.lang.model.VariableElement

I'm trying to find the types of the parameters of a method using the Java 6 metamodel API. If the type is an enum, I'd also like to know all of it's type's enum constant names. Here's what I've got ...
1
vote
0answers
17 views

implementing apt in MobileSafari

Does anyone know how to use APT on a website, so respringing, installing/uninstalling .debs, etc work like Cydia, but just on a web browser?
1
vote
2answers
79 views

Format code in Doxia Apt Format

I am currently starting to write a documentation for one of our projects. For reasons of simplicity we chose to use the Almost Plain Text (APT) Format, see more info here: ...
1
vote
2answers
193 views

How do I create a native Debian package for static files?

I have a need to Debianize some static resources for a software project but am confused by the available information and could use some guidance in doing so. Here are the materials I've been reading: ...
1
vote
1answer
63 views

Is there a way to add a ppa using the python apt module?

I need to add a ppa to remote servers using a python script. The bash equivalent of what I want to do is: $ add-apt-repository ppa:user/ppa-name I'm assuming it would look something like this: ...
1
vote
1answer
153 views

Cannot initialize Velocity engine in an apt processor class

I am trying to use Velocity in an apt annotation processing class (with Maven). On initializing Velocity Properties vProps = new Properties(); ...
1
vote
2answers
110 views

Update python itself using the apt module

I am writing a python script that will run on an EC2 machine as the user-data-script. I'm trying to figure out how I can upgrade the packages on the machine similar to the bash command: $ sudo ...
1
vote
2answers
255 views

Generating JPA2 Metamodel from a Gradle build script

I'm trying to set up a Gradle build script for a new project. That project will use JPA 2 along with Querydsl. On the following page of Querydsl's reference documentation, they explain how to set up ...
1
vote
1answer
40 views

I am failing to get 'required_changes' with python-apt

import sys from apt.debfile import DebPackage deb = DebPackage(sys.argv[1]) print(deb.required_changes) I expected the above code to display packages that are supposed to satisfy a dependency of a ...
1
vote
0answers
31 views

Using an Apt Repository for Paid Software Updates

I'm trying to determine a way to distribute software updates for a hosted/on-site web application that may have weekly and/or monthly updates. I don't want the customers who use the on-site product ...
1
vote
1answer
376 views

Apt task with Java 1.6?

I have some automatically generated Ant build scripts that I need to use to build an application. I am using Ant 1.8.1 and Java 1.6. The scripts use the Apt Ant task, which according to the task ...
1
vote
2answers
91 views

Disable prompts while installing a Debian package

How can i disable totally the prompts that appear while installing a Debian package, i've used all the options that i've found but there are some packages that are still prompting. I'm using this ...
1
vote
1answer
141 views

auto completion on generated java code in eclipse

I would like to make auto generated code available to eclipse editor for auto completion Following cases: 1) Xml document describing a data model and java processor is creating java source code. ...
1
vote
1answer
330 views

Java 6: how to pass multiple parameters to APT

I have a Java Annotation Processor that extends from AbstractProcessor. I have two supported options, addResDir and verbose, and I am trying to set them like this: -AaddResDir=src/main/webapp ...
1
vote
1answer
436 views

AOP or APT for overriding methods from super classes

I have a large library of wicket components that are annotated with a custom annotation @ReferencedResource or another annotation @ReferencedResources, that has a ReferencedResouce[] value() parameter ...
1
vote
2answers
113 views

Java APT for Code validation

Does anyone know of a framework which uses Java APT for Java source code validation? The idea is presented here : http://www.javaspecialists.eu/archive/Issue167.html
1
vote
1answer
1k views

APT ANT task fails in eclipse but works from shell

I have a ant javac task which is supposed to run some annotation processor. It works fine when run from a batch file, but fails with Error running javac.exe compiler when started from eclipse. ...
1
vote
1answer
403 views

Placeholder substitution in a Maven APT page

I am working on Maven site documentation for some related projects, and I want to create a hyperlink from one site's documentation to another sites documentation. The wrinkle is that the URL for the ...
1
vote
1answer
542 views

apt warning: no annotation processor found

I am just teaching myself about web services right now and trying to run a helloWorld. I think that to setup all of the web service stuff I need to run apt. I am running it like this: apt ...
1
vote
2answers
908 views

Couldn't find package libapache2-mod-wsgi

I have developed a website in Django, and now it must go into production. This i want to do with mod_wsgi and apache2. Unfortunately i get the error 'Couldn't find package libapache2-mod-wsgi' when ...
1
vote
1answer
125 views

Eclipse APT slows compiling

I'm currently writing an Eclipse APT plug-in to check if my annotations are correct. But it appears that enabling APT causes my compile process to slow down. Even saving a tiny, unreferenced class ...

1 2