Skip to main content
summaryrefslogtreecommitdiffstats
blob: 50e4f094cdd0f3074c81ea12190f47e0b57a9a3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
 * Copyright (c) 2008, 2009 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.rpm.ui.editor;


/**
 * Definitions of all rpm tags.
 *
 */
public interface RpmTags {
	String SUMMARY = "Summary"; //$NON-NLS-1$
	String NAME = "Name"; //$NON-NLS-1$
	String VERSION = "Version"; //$NON-NLS-1$
	String PACKAGER = "Packager"; //$NON-NLS-1$
	String ICON = "Icon"; //$NON-NLS-1$
	String URL = "URL"; //$NON-NLS-1$
	String PREFIX = "Prefix"; //$NON-NLS-1$
	String GROUP = "Group"; //$NON-NLS-1$
	String LICENSE = "License"; //$NON-NLS-1$
	String RELEASE = "Release"; //$NON-NLS-1$
	String BUILD_ROOT = "BuildRoot"; //$NON-NLS-1$
	String DISTRIBUTION = "Distribution"; //$NON-NLS-1$
	String VENDOR =	"Vendor"; //$NON-NLS-1$
	String PROVIDES = "Provides"; //$NON-NLS-1$
	String EXCLUSIVE_ARCH = "ExclusiveArch"; //$NON-NLS-1$
	String EXCLUDE_ARCH = "ExcludeArch"; //$NON-NLS-1$
	String EXCLUDE_OS = "ExclusiveOS"; //$NON-NLS-1$
	String BUILD_ARCH = "BuildArch"; //$NON-NLS-1$
	String BUILD_ARCHITECTURES = "BuildArchitectures"; //$NON-NLS-1$
	String AUTO_REQUIRES = "AutoRequires"; //$NON-NLS-1$
	String AUTO_REQ = "AutoReq"; //$NON-NLS-1$
	String AUTO_REQ_PROV = "AutoReqProv"; //$NON-NLS-1$
	String AUTO_PROV = "AutoProv"; //$NON-NLS-1$
	String EPOCH = "Epoch"; //$NON-NLS-1$
}

Back to the top